diff --git a/app/views/officing/booth/new.html.erb b/app/views/officing/booth/new.html.erb
index afb1b090a..a520a234f 100644
--- a/app/views/officing/booth/new.html.erb
+++ b/app/views/officing/booth/new.html.erb
@@ -12,8 +12,8 @@
<%= f.select :id,
@booths.map { |booth| [booth.location, booth.id] },
- selected: @booths.first,
- label: false %>
+ { selected: @booths.first, label: false },
+ { "aria-label": t("officing.booth.new.title") } %>
<%= f.submit(t("devise_views.sessions.new.submit"), class: "button expanded") %>
diff --git a/spec/system/officing/booth_spec.rb b/spec/system/officing/booth_spec.rb
index 2f86cbdd0..cf5b66aaa 100644
--- a/spec/system/officing/booth_spec.rb
+++ b/spec/system/officing/booth_spec.rb
@@ -47,7 +47,7 @@ describe "Booth", :with_frozen_time do
expect(page).to have_content "Choose your booth"
- select booth2.location, from: "booth_id"
+ select booth2.location, from: "Choose your booth"
click_button "Enter"
within("#officing-booth") do
@@ -72,6 +72,6 @@ describe "Booth", :with_frozen_time do
expect(page).to have_content "Choose your booth"
- expect(page).to have_select("booth_id", options: [booth1.location, booth2.location])
+ expect(page).to have_select "Choose your booth", options: [booth1.location, booth2.location]
end
end