Browse Source

Fixes incorrect messaging on patch created notification

main
Ramin Tadayon 1 year ago
parent
commit
ebe7dc2075
No known key found for this signature in database GPG Key ID: 79D60DDE3DFB95F5
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/plus/webviews/patchDetails/patchDetailsWebview.ts

+ 3
- 1
src/plus/webviews/patchDetails/patchDetailsWebview.ts View File

@ -381,15 +381,17 @@ export class PatchDetailsWebviewProvider
async function showNotification() { async function showNotification() {
const view = { title: 'View Patch' }; const view = { title: 'View Patch' };
const copy = { title: 'Copy Link' }; const copy = { title: 'Copy Link' };
let copied = false;
while (true) { while (true) {
const result = await window.showInformationMessage( const result = await window.showInformationMessage(
'Cloud Patch successfully created \u2014 link copied to the clipboard',
`Cloud Patch successfully created${copied ? '\u2014 link copied to the clipboard' : ''}`,
view, view,
copy, copy,
); );
if (result === copy) { if (result === copy) {
void env.clipboard.writeText(draft.deepLinkUrl); void env.clipboard.writeText(draft.deepLinkUrl);
copied = true;
continue; continue;
} }

Loading…
Cancel
Save