fix: missing autocomplete attr for shopping list name input

This commit is contained in:
juancwu 2026-02-06 22:00:48 +00:00
commit 18af2b73da

View file

@ -24,6 +24,9 @@ templ SpaceListDetailPage(space *model.Space, list *model.ShoppingList, items []
@input.Input(input.Props{ @input.Input(input.Props{
Name: "name", Name: "name",
Placeholder: "New item...", Placeholder: "New item...",
Attributes: templ.Attributes{
"autocomplete": "off",
},
}) })
@button.Button(button.Props{ @button.Button(button.Props{
Type: button.TypeSubmit, Type: button.TypeSubmit,