Update bridged overflow menu items for settings links

This commit is contained in:
Jay Ohms
2026-01-08 16:36:12 -05:00
parent b6aac0ba73
commit b9dcc3c08f
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -4,9 +4,8 @@ module BoardsHelper
end
def link_to_edit_board(board)
link_to edit_board_path(board), class: "btn", data: {
controller: "tooltip", bridge__overflow_menu_target: "item", bridge_title: "Settings for #{board.name}"
} do
link_to edit_board_path(board), class: "btn",
data: { controller: "tooltip", bridge__overflow_menu_target: "item", bridge_title: "Board settings" } do
icon_tag("settings") + tag.span("Settings for #{board.name}", class: "for-screen-reader")
end
end