From 18af2b73dad09a54b35d2d9df28290ef113d2a2e Mon Sep 17 00:00:00 2001 From: juancwu Date: Fri, 6 Feb 2026 22:00:48 +0000 Subject: [PATCH] fix: missing autocomplete attr for shopping list name input --- internal/ui/pages/app_space_list_detail.templ | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/ui/pages/app_space_list_detail.templ b/internal/ui/pages/app_space_list_detail.templ index 747cec9..26adf15 100644 --- a/internal/ui/pages/app_space_list_detail.templ +++ b/internal/ui/pages/app_space_list_detail.templ @@ -24,6 +24,9 @@ templ SpaceListDetailPage(space *model.Space, list *model.ShoppingList, items [] @input.Input(input.Props{ Name: "name", Placeholder: "New item...", + Attributes: templ.Attributes{ + "autocomplete": "off", + }, }) @button.Button(button.Props{ Type: button.TypeSubmit,