Aggiunto controllo valori nulli dizionario PendReq
This commit is contained in:
@@ -126,7 +126,8 @@ namespace WebWindowComplex.Compo
|
||||
protected string cssValid(string fKey)
|
||||
{
|
||||
string ans = "";
|
||||
if (ListWarnings.ContainsKey(fKey) || DictPendReq.ContainsKey(fKey))
|
||||
if (ListWarnings != null && DictPendReq != null &&
|
||||
(ListWarnings.ContainsKey(fKey) || DictPendReq.ContainsKey(fKey)))
|
||||
ans = "border border-danger";
|
||||
else
|
||||
ans = "";
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Version>3.1.3.3012</Version>
|
||||
<Version>3.1.3.3013</Version>
|
||||
<Authors>Annamaria Sassi</Authors>
|
||||
<Company>Egalware</Company>
|
||||
<Description>Componente gestione Configurazioni avanzate Window per LUX</Description>
|
||||
@@ -105,5 +105,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user