fix catena update hwopt

This commit is contained in:
Samuele Locatelli
2025-11-11 09:49:24 +01:00
parent d0a55fdeed
commit cf7eccb3ba
6 changed files with 77 additions and 9 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ namespace Test.UI.Components.Compo
public string LoadPar { get; set; } = "";
[CascadingParameter(Name = "CurrLoading")]
public List<string> CurrLoading { get; set; }
public List<string> CurrLoading { get; set; } = new List<string>();
#endregion Public Properties
@@ -239,6 +239,10 @@ namespace Test.UI.Components.Pages
CurrData.DictShape = new Dictionary<int, string>();
break;
case TableComp.DataAction.ResetHwOpt:
CurrData.DictOptionsXml = new Dictionary<int, string>();
break;
default:
break;
}