diff --git a/Lux.UI/Components/Compo/Admin/VocabMan.razor b/Lux.UI/Components/Compo/Admin/VocabMan.razor index e63c0527..66b90cc3 100644 --- a/Lux.UI/Components/Compo/Admin/VocabMan.razor +++ b/Lux.UI/Components/Compo/Admin/VocabMan.razor @@ -36,6 +36,7 @@
| Lemma | Traduzione | ||
| + | + + + | +@item.Lemma |
- @if (currRec != null && item.Lemma == currRec.Lemma && item.Lingua == currRec.Lingua)
+ @if (editRec != null && item.Lemma == editRec.Lemma && item.Lingua == editRec.Lingua)
{
diff --git a/Lux.UI/Components/Compo/Admin/VocabMan.razor.cs b/Lux.UI/Components/Compo/Admin/VocabMan.razor.cs
index c5bc3f1a..1df6d411 100644
--- a/Lux.UI/Components/Compo/Admin/VocabMan.razor.cs
+++ b/Lux.UI/Components/Compo/Admin/VocabMan.razor.cs
@@ -48,7 +48,7 @@ namespace Lux.UI.Components.Compo.Admin
#region Private Fields
private int currPage = 1;
- private VocabolarioModel? currRec = null;
+ private VocabolarioModel? editRec = null;
private bool isLoading = false;
private List |