bug (UBERF-6137) Copy URL link does not work in this button (copy) (#5081)

Signed-off-by: Pavel Kuzyakin <iposho@gmail.com>
This commit is contained in:
Pavel Kuzyakin 2024-03-28 12:23:01 +04:00 committed by GitHub
parent 2bc558726e
commit fd2cb39945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@
}
function handleCopyUrl (): void {
if (issue === undefined) {
if (issue !== undefined) {
void copyTextToClipboard(params?.issueUrl)
}
}