We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76dfb8c commit 61e9250Copy full SHA for 61e9250
src/commands/importFromRegistry.ts
@@ -22,6 +22,7 @@ export async function importFromRegistry(scope?: vscode.ConfigurationScope) {
22
vscode.window.showInformationMessage("Cancelled server import.");
23
});
24
25
+ // This forces the progress bar to actually show before the possibly long-running load of registry data
26
await new Promise(resolve => setTimeout(resolve,0));
27
28
await loadRegistryData(config, serverDefinitions, serversMissingUsernames, newServerNames);
0 commit comments