ソースを参照

Fixes incorrect messaging on patch created notification

main
Ramin Tadayon 1年前
コミット
ebe7dc2075
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 79D60DDE3DFB95F5
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      src/plus/webviews/patchDetails/patchDetailsWebview.ts

+ 3
- 1
src/plus/webviews/patchDetails/patchDetailsWebview.ts ファイルの表示

@ -381,15 +381,17 @@ export class PatchDetailsWebviewProvider
async function showNotification() {
const view = { title: 'View Patch' };
const copy = { title: 'Copy Link' };
let copied = false;
while (true) {
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,
copy,
);
if (result === copy) {
void env.clipboard.writeText(draft.deepLinkUrl);
copied = true;
continue;
}

読み込み中…
キャンセル
保存