From cbb86cebd30d88863bdd8fbcb52f5329805e327b Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 15 May 2025 16:15:33 +0200 Subject: [PATCH] Test compile 4 WBuild --- MP.SPEC/Components/ProdKit/KitDetailModal.razor | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MP.SPEC/Components/ProdKit/KitDetailModal.razor b/MP.SPEC/Components/ProdKit/KitDetailModal.razor index d6669d8e..6fc6486b 100644 --- a/MP.SPEC/Components/ProdKit/KitDetailModal.razor +++ b/MP.SPEC/Components/ProdKit/KitDetailModal.razor @@ -107,26 +107,26 @@ [Parameter] public EventCallback EC_Close { get; set; } - [Parameter] - public List? ListTK { get; set; } = null; + public List? ListODL { get; set; } = null; [Parameter] public List? ListPODL { get; set; } = null; [Parameter] - public List? ListODL { get; set; } = null; + public List? ListTK { get; set; } = null; protected override void OnParametersSet() { numTempKit = ListTK != null ? ListTK.Count() : 0; numIstKit = ListPODL != null ? ListPODL.Count() : 0; } - private int numTempKit = 0; - private int numIstKit = 0; protected async void ReqClose() { await EC_Close.InvokeAsync(true); } + + private int numTempKit = 0; + private int numIstKit = 0; }