diff --git a/app/views/cards/taggings/new.html.erb b/app/views/cards/taggings/new.html.erb index 940ebe8a1..a016470aa 100644 --- a/app/views/cards/taggings/new.html.erb +++ b/app/views/cards/taggings/new.html.erb @@ -7,12 +7,19 @@ > Tag this… - <%= form_with url: card_taggings_path(@card), class: "flex flex-column gap-half full-width margin-block-half" do |form| %> + <%= form_with url: card_taggings_path(@card), id: dom_id(@card, :tags_form), class: "flex flex-column gap-half full-width margin-block-half" do |form| %> <%= form.text_field :tag_title, placeholder: @tags.any? ? "Add a new tag or filter…" : "Name this tag…", class: "input txt-small full-width", autocomplete: "off", data: { filter_target: "input", action: "input->filter#filter" } %> <% end %>