From a04ccde2ec24dc10bd4af02377f1b032ce1aecb8 Mon Sep 17 00:00:00 2001 From: MarcoE Date: Mon, 6 Jul 2026 15:00:38 +0200 Subject: [PATCH] Spostato tasto salva --- .../SingleElements/Modal/ModalFormScheda.razor | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor b/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor index ef625ce..6e86e65 100644 --- a/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor +++ b/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor @@ -24,8 +24,7 @@ - +
@@ -184,6 +183,15 @@ Suggerisci note descrittive
+ + @if (!LabelSave.IsNullOrEmpty()) + { +
+ + @LabelSave + +
+ }
@@ -592,7 +600,7 @@ if (modal is { Canceled: false, Data: List articoliSelezionati }) { - Scheda.Articoli.AddRange(articoliSelezionati.ConvertAll(x => new SchedaArticolo + Scheda.Articoli.InsertRange(0, articoliSelezionati.ConvertAll(x => new SchedaArticolo { Barcode = x.Barcode, Descrizione = x.Descrizione @@ -677,7 +685,7 @@ { RecalcDirty(true); - Scheda.Articoli.Add(new SchedaArticolo + Scheda.Articoli.Insert(0, new SchedaArticolo { Barcode = art.Barcode, Descrizione = art.Descrizione