Corretti alcuni Warnings

This commit is contained in:
Annamaria Sassi
2026-01-28 11:26:54 +01:00
parent 3f96d71c30
commit ce8bd4fafc
27 changed files with 479 additions and 435 deletions
@@ -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);
}
}