Corretti alcuni Warnings
This commit is contained in:
@@ -38,8 +38,8 @@ namespace WebWindowComplex.Compo
|
||||
{
|
||||
if(CurrOpt.sName.Equals("HMan"))
|
||||
CurrOpt.sValue = value;
|
||||
else
|
||||
CurrOpt.sValue = CurrOpt.ValueList.FirstOrDefault(x => x == value);
|
||||
else if (CurrOpt.ValueList.FirstOrDefault(x => x == value) != null)
|
||||
CurrOpt.sValue = CurrOpt.ValueList.FirstOrDefault(x => x == value)!;
|
||||
_ = EC_Update.InvokeAsync(CurrOpt);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user