From 9d6ec6791af264deeebbb063b5f0f82144ecd8cc Mon Sep 17 00:00:00 2001 From: Alexander van Delft Date: Fri, 6 Dec 2024 11:16:56 +0100 Subject: [PATCH] Rename method according to review --- .../Components/ParameterEditor/ParameterBaseRowViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/COMETwebapp/ViewModels/Components/ParameterEditor/ParameterBaseRowViewModel.cs b/COMETwebapp/ViewModels/Components/ParameterEditor/ParameterBaseRowViewModel.cs index 3790dfd0..be572157 100644 --- a/COMETwebapp/ViewModels/Components/ParameterEditor/ParameterBaseRowViewModel.cs +++ b/COMETwebapp/ViewModels/Components/ParameterEditor/ParameterBaseRowViewModel.cs @@ -112,13 +112,13 @@ private void InitializesProperties(bool isReadOnly) this.Option = this.ValueSet.ActualOption is not null ? this.ValueSet.ActualOption?.Name : string.Empty; this.State = this.ValueSet.ActualState is not null ? this.ValueSet.ActualState.Name : string.Empty; this.Switch = this.ValueSet.ValueSwitch; - this.CalculateParameterGroupData(); + this.CalculateParameterGroupPath(); } /// /// Calculate and set the values of parameters /// - private void CalculateParameterGroupData() + private void CalculateParameterGroupPath() { var parameterGroupPath = string.Empty;