feat(note): open note in new tab on cmd press #395

Merged
lujakob merged 1 commits from fix/open-note-in-new-tab into main 2023-03-07 12:29:41 +00:00
1 changed files with 6 additions and 1 deletions

View File

@ -175,7 +175,12 @@ export default function Note(props: NoteProps) {
function goToEvent(e: React.MouseEvent, id: u256) {
e.stopPropagation();
navigate(eventLink(id));
// detect cmd key and open in new tab
if (e.metaKey) {
window.open(eventLink(id), "_blank");
} else {
navigate(eventLink(id));
}
}
function replyTag() {