Auto merge of #14481 - Veykril:vscode-linking-popup, r=Veykril

fix: Fix vscode project linking popup buttons being swapped

closes https://github.com/rust-lang/rust-analyzer/issues/14480
This commit is contained in:
bors 2023-04-04 05:55:57 +00:00
commit f070093462

View File

@ -148,15 +148,16 @@ export async function createClient(
"Don't show this again"
);
switch (choice) {
case "Yes":
break;
case "No":
break;
case "Yes":
await config.update(
"linkedProjects",
config
.get<any[]>("linkedProjects")
?.concat(
path.fsPath.substring(folder.length)
"." +
path.fsPath.substring(folder.length)
),
false
);