fix: create tag input not having autocomplete attr

This commit is contained in:
juancwu 2026-01-18 23:40:41 +00:00
commit 7ceac1ffeb

View file

@ -26,6 +26,9 @@ templ SpaceTagsPage(space *model.Space, tags []*model.Tag) {
@input.Input(input.Props{
Name: "name",
Placeholder: "New tag name...",
Attributes: templ.Attributes{
"autocomplete": "off",
},
})
@button.Button(button.Props{
Type: button.TypeSubmit,