From 7ceac1ffeb182214129aea6b3bee81e6484df745 Mon Sep 17 00:00:00 2001 From: juancwu Date: Sun, 18 Jan 2026 23:40:41 +0000 Subject: [PATCH] fix: create tag input not having autocomplete attr --- internal/ui/pages/app_space_tags.templ | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/ui/pages/app_space_tags.templ b/internal/ui/pages/app_space_tags.templ index 2165648..2a7c581 100644 --- a/internal/ui/pages/app_space_tags.templ +++ b/internal/ui/pages/app_space_tags.templ @@ -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,