chore(views/board): set up context menu on the header

This commit is contained in:
Elian Doran
2025-07-25 15:15:10 +03:00
parent 08678e74e6
commit 99ab9ee66b

View File

@@ -14,7 +14,7 @@ interface ShowNoteContextMenuArgs {
export function setupContextMenu({ $container, api, boardView }: ShowNoteContextMenuArgs) {
$container.on("contextmenu", ".board-note", showNoteContextMenu);
$container.on("contextmenu", ".board-column", showColumnContextMenu);
$container.on("contextmenu", ".board-column h3", showColumnContextMenu);
function showColumnContextMenu(event: ContextMenuEvent) {
event.preventDefault();