diff --git a/template/components/form_input.go b/template/components/form_input.go index 0ee8150..d1264ec 100644 --- a/template/components/form_input.go +++ b/template/components/form_input.go @@ -11,10 +11,4 @@ type FormInput struct { IsDisabled bool Autocomplete bool IsRequired bool - CustomAtt []CustomAtt -} - -type CustomAtt struct { - AttName string - AttValue string } diff --git a/template/components/form_input.html b/template/components/form_input.html index adf33e8..6103b76 100644 --- a/template/components/form_input.html +++ b/template/components/form_input.html @@ -14,11 +14,6 @@ {{if ne .Value ""}} value="{{.Value}}" {{end}} - {{if .CustomAtt }} - {{range $options := .CustomAtt}} - {{$options.AttName}}="{{$options.AttValue}}" - {{end}} - {{end}} aria-describedby="{{.ID}}Help"> {{if ne .Hint ""}}{{.Hint}}{{end}} {{if ne .Error ""}}