From 7f2638f910259be620cd9418ddb0915d7afa64fe Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou <40413322+rioug@users.noreply.github.com> Date: Mon, 12 May 2025 13:23:46 +1000 Subject: [PATCH] Update app/components/tag_list_input_component/tag_list_input_component.html.haml replace merge by double splat Co-authored-by: David Cook --- .../tag_list_input_component/tag_list_input_component.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/tag_list_input_component/tag_list_input_component.html.haml b/app/components/tag_list_input_component/tag_list_input_component.html.haml index 5034a5ea6a..81f4b763ce 100644 --- a/app/components/tag_list_input_component/tag_list_input_component.html.haml +++ b/app/components/tag_list_input_component/tag_list_input_component.html.haml @@ -16,4 +16,4 @@ %span=tag %a.remove-button{ "data-action": "click->tag-list-input-component--tag-list-input#removeTag" } × - = text_field_tag "variant_add_tag_#{f.object.id}".to_sym, nil, { class: "input", placeholder: placeholder, "data-action": "keydown.enter->tag-list-input-component--tag-list-input#addTag keyup->tag-list-input-component--tag-list-input#filterInput", "data-tag-list-input-component--tag-list-input-target": "newTag" }.merge(aria_label_option) + = text_field_tag "variant_add_tag_#{f.object.id}".to_sym, nil, class: "input", placeholder: placeholder, "data-action": "keydown.enter->tag-list-input-component--tag-list-input#addTag keyup->tag-list-input-component--tag-list-input#filterInput", "data-tag-list-input-component--tag-list-input-target": "newTag", **aria_label_option