web: show success toast when copying note link in context menu (#10027)

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2026-07-02 08:45:41 +05:00
committed by GitHub
parent 743d47e9e9
commit e931423eba

View File

@@ -496,6 +496,7 @@ export const noteMenuItems: (
"text/html": `<a href="${url}">${note.title}</a>`,
"text/markdown": `[${note.title}](${url})`
});
showToast("success", strings.linkCopied());
}
},
{
@@ -594,6 +595,7 @@ export const noteMenuItems: (
"text/html": `<a href="${link}">${note.title}</a>`,
"text/markdown": `[${note.title}](${link})`
});
showToast("success", strings.linkCopied());
}
},
{