diff --git a/Directory.Packages.props b/Directory.Packages.props
index a6b2dc28..26c41d04 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -8,8 +8,8 @@
runtime; build; native; contentfiles; analyzers; buildtransitive
all
-
-
+
+
diff --git a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor.cs b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor.cs
index 6df1afa9..795b7f16 100644
--- a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor.cs
+++ b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor.cs
@@ -120,7 +120,7 @@ namespace Lux.UI.Components.Compo.Offer
private List AvailHardwareList = new();
- private List AvailMaterialList = new List();
+ private List AvailWoodList = new List();
///
/// Lista profili da DB
@@ -1593,7 +1593,7 @@ namespace Lux.UI.Components.Compo.Offer
FamilyHardware = AvailFamilyHardwareList,
Glass = AvailGlassList,
Hardware = AvailHardwareList,
- Material = AvailMaterialList,
+ Wood = AvailWoodList,
ProfileList = profList
};
CurrData = new LivePayload()
@@ -1649,7 +1649,7 @@ namespace Lux.UI.Components.Compo.Offer
AvailHardwareList = AllConfHardware
.Select(x => new Egw.Window.Data.Hardware(x.Id, x.FamilyName, x.Description, x.OpeningType, x.Shape, x.SashQty, x.SashPosition))
.ToList();
- AvailMaterialList = AllConfWood
+ AvailWoodList = AllConfWood
.Select(x => x.Description)
.ToList();
// FixMe Todo: aggiunta profili (manca anche nel costruttore...)
diff --git a/Lux.UI/Components/Compo/Order/OrderRowMan.razor.cs b/Lux.UI/Components/Compo/Order/OrderRowMan.razor.cs
index 23913735..6fd78790 100644
--- a/Lux.UI/Components/Compo/Order/OrderRowMan.razor.cs
+++ b/Lux.UI/Components/Compo/Order/OrderRowMan.razor.cs
@@ -1361,7 +1361,7 @@ namespace Lux.UI.Components.Compo.Order
FamilyHardware = AvailFamilyHardwareList,
Glass = AvailGlassList,
Hardware = AvailHardwareList,
- Material = AvailMaterialList,
+ Wood = AvailMaterialList,
ProfileList = profList
};
CurrData = new LivePayload()
diff --git a/Lux.UI/Components/Compo/Templates/TemplateRowList.razor.cs b/Lux.UI/Components/Compo/Templates/TemplateRowList.razor.cs
index 22d5012c..72d33c11 100644
--- a/Lux.UI/Components/Compo/Templates/TemplateRowList.razor.cs
+++ b/Lux.UI/Components/Compo/Templates/TemplateRowList.razor.cs
@@ -123,7 +123,7 @@ namespace Lux.UI.Components.Compo.Templates
private List AvailHardwareList = new();
- private List AvailMaterialList = new List();
+ private List AvailWoodList = new List();
///
/// Lista profili da DB
@@ -1021,7 +1021,7 @@ namespace Lux.UI.Components.Compo.Templates
FamilyHardware = AvailFamilyHardwareList,
Glass = AvailGlassList,
Hardware = AvailHardwareList,
- Material = AvailMaterialList,
+ Wood = AvailWoodList,
ProfileList = profList
};
CurrData = new LivePayload()
@@ -1073,7 +1073,7 @@ namespace Lux.UI.Components.Compo.Templates
AvailHardwareList = AllConfHardware
.Select(x => new Egw.Window.Data.Hardware(x.Id, x.FamilyName, x.Description, x.OpeningType, x.Shape, x.SashQty, x.SashPosition))
.ToList();
- AvailMaterialList = AllConfWood
+ AvailWoodList = AllConfWood
.Select(x => x.Description)
.ToList();
// FixMe Todo: aggiunta profili (manca anche nel costruttore...)