diff --git a/plugins/tracker-resources/src/components/issues/IssueNotification.svelte b/plugins/tracker-resources/src/components/issues/IssueNotification.svelte index 69672f6812..13d93da0fa 100644 --- a/plugins/tracker-resources/src/components/issues/IssueNotification.svelte +++ b/plugins/tracker-resources/src/components/issues/IssueNotification.svelte @@ -47,7 +47,7 @@ } function handleCopyUrl (): void { - if (issue === undefined) { + if (issue !== undefined) { void copyTextToClipboard(params?.issueUrl) } }