diff --git a/MP.Land/Components/CompareAnagKeyVal.razor b/MP.Land/Components/CompareAnagKeyVal.razor index 6f8008ac..d5c5402c 100644 --- a/MP.Land/Components/CompareAnagKeyVal.razor +++ b/MP.Land/Components/CompareAnagKeyVal.razor @@ -24,13 +24,13 @@
| Rem | +Remoto | Nome | Val. Int | Val. Float | Val. String | Descrizione | -Loc | +Locale |
|---|
| Rem | +Remoto | Chiave | Valore | Valore Std | Note | -Loc | +Locale |
@@ -69,7 +70,8 @@
}
@if (!item.IsEqual && item.DestExist)
{
- @item.Dest.ValoreStd
+ string locCss = item.Source.ValoreStd.Equals(item.Dest.ValoreStd) ? "text-secondary" : "text-danger";
+ @item.Dest.ValoreStd
}
|
@@ -79,7 +81,8 @@
}
@if (!item.IsEqual && item.DestExist)
{
- @item.Dest.Note
+ string locCss = item.Source.Note.Equals(item.Dest.Note) ? "text-secondary" : "text-danger";
+ @item.Dest.Note
}
|
diff --git a/MP.Land/Components/CompareConfig.razor.cs b/MP.Land/Components/CompareConfig.razor.cs
index a66a2456..7bdf3f56 100644
--- a/MP.Land/Components/CompareConfig.razor.cs
+++ b/MP.Land/Components/CompareConfig.razor.cs
@@ -97,12 +97,14 @@ namespace MP.Land.Components
protected async Task LocalUpd(CompConfig currItem)
{
- //if (!await JSRuntime.InvokeAsync
|
|---|