Skip to content

Commit 902352e

Browse files
committed
polish
1 parent bb24a31 commit 902352e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/managePasswords.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ export async function migratePasswords(secretStorage: vscode.SecretStorage): Pro
9696
migratableCredentials.push(item);
9797
}
9898
});
99+
99100
if (migratableCredentials.length === 0) {
100101
const message = 'No remaining legacy stored passwords are eligible for migration.';
101102
const detail = 'They are either for servers with a password already stored in the new format, or for servers whose definition does not specify a username.'
102103
await vscode.window.showWarningMessage(message,
103-
{modal: true, detail},
104-
//{title: "OK", isCloseAffordance: true}
104+
{modal: true, detail}
105105
);
106106
} else {
107107
const choices = await vscode.window.showQuickPick<IMigratePasswordItem>(migratableCredentials,

0 commit comments

Comments
 (0)