Skip to content

Commit 0bbade7

Browse files
committed
set retry=true on toolbar auth dialog after initial show
1 parent 64f48c0 commit 0bbade7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/Toolbar.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,17 @@ async function showGitOperationDialog(
5656
),
5757
buttons: [Dialog.cancelButton(), Dialog.okButton({ label: 'OK' })]
5858
});
59+
5960
if (!credentials.button.accept) {
6061
break;
6162
}
63+
6264
result = await showDialog({
6365
title: title,
6466
body: new GitPullPushDialog(model, operation, credentials.value),
6567
buttons: [Dialog.okButton({ label: 'DISMISS' })]
6668
});
69+
retry = true;
6770
}
6871
}
6972

0 commit comments

Comments
 (0)