From 4fc85883eefe8cfd3bd6755c4b0cbed2dd9aca19 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Thu, 20 Nov 2025 09:36:18 +0000 Subject: [PATCH] Don't open account links in new window This allows switching account in-place inside the same PWA or browser tab. --- app/views/my/menus/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/my/menus/show.html.erb b/app/views/my/menus/show.html.erb index ee0f0287b..69594f0d4 100644 --- a/app/views/my/menus/show.html.erb +++ b/app/views/my/menus/show.html.erb @@ -66,7 +66,7 @@ <% cache [ Current.identity, accounts ] do %> <%= collapsible_nav_section "Accounts" do %> <% accounts.each do |account| %> - <%= filter_place_menu_item landing_url(script_name: account.slug), account.name, "marker", new_window: true, current: account == Current.account %> + <%= filter_place_menu_item landing_url(script_name: account.slug), account.name, "marker", current: account == Current.account %> <% end %> <% end %> <% end %>