diff --git a/src/WorkFlowCheck.Web/Helpers/AspForDataTypeTagHelper.cs b/src/WorkFlowCheck.Web/Helpers/AspForDataTypeTagHelper.cs index af9484b..de3375e 100644 --- a/src/WorkFlowCheck.Web/Helpers/AspForDataTypeTagHelper.cs +++ b/src/WorkFlowCheck.Web/Helpers/AspForDataTypeTagHelper.cs @@ -17,8 +17,12 @@ namespace WorkFlowCheck.Web.Helpers string dataType = GetDataTypeString(type); output.Attributes.SetAttribute("data-type", dataType); + + // 🔥 EZ HIÁNYZIK → Rakd be! + output.Attributes.RemoveAll("asp-for-datatype"); } + private string GetDataTypeString(Type type) { // Nullable esetén nyerjük ki az alaptípust diff --git a/src/WorkFlowCheck.Web/Pages/CheckList/CheckListHeader/CheckListHeaderEditPage.cshtml b/src/WorkFlowCheck.Web/Pages/CheckList/CheckListHeader/CheckListHeaderEditPage.cshtml index 47e2a92..78f9c11 100644 --- a/src/WorkFlowCheck.Web/Pages/CheckList/CheckListHeader/CheckListHeaderEditPage.cshtml +++ b/src/WorkFlowCheck.Web/Pages/CheckList/CheckListHeader/CheckListHeaderEditPage.cshtml @@ -33,23 +33,23 @@
- - - - - - - - + + + + + + + +
- +
- +
diff --git a/src/WorkFlowCheck.Web/Pages/_ViewImports.cshtml b/src/WorkFlowCheck.Web/Pages/_ViewImports.cshtml index 30510b3..e0356cc 100644 --- a/src/WorkFlowCheck.Web/Pages/_ViewImports.cshtml +++ b/src/WorkFlowCheck.Web/Pages/_ViewImports.cshtml @@ -2,3 +2,4 @@ @using WorkFlowCheck.Web.Helpers @namespace WorkFlowCheck.Web.Pages @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, WorkFlowCheck.Web.Helpers