From a677f4381d62ff625873a44c5f6dec5a38bef243 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Wed, 20 Nov 2024 01:45:36 +0200 Subject: [PATCH] Add icon for "Open note in a new tab" --- src/public/app/menus/link_context_menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/menus/link_context_menu.js b/src/public/app/menus/link_context_menu.js index cd9c47043..8070e4020 100644 --- a/src/public/app/menus/link_context_menu.js +++ b/src/public/app/menus/link_context_menu.js @@ -6,7 +6,7 @@ function openContextMenu(notePath, e, viewScope = {}, hoistedNoteId = null) { x: e.pageX, y: e.pageY, items: [ - {title: "Open note in a new tab", command: "openNoteInNewTab", uiIcon: "bx bx-empty"}, + {title: "Open note in a new tab", command: "openNoteInNewTab", uiIcon: "bx bx-link-external"}, {title: "Open note in a new split", command: "openNoteInNewSplit", uiIcon: "bx bx-dock-right"}, {title: "Open note in a new window", command: "openNoteInNewWindow", uiIcon: "bx bx-window-open"} ],