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 84829e3 commit 669d9b5Copy full SHA for 669d9b5
src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.ts
@@ -274,7 +274,7 @@ export abstract class BaseConfigurationResolverService extends AbstractVariableR
274
inputOptions.password = info.password;
275
}
276
return this.userInputAccessQueue.queue(() => this.quickInputService.input(inputOptions)).then(resolvedInput => {
277
- if (typeof resolvedInput === 'string') {
+ if (typeof resolvedInput === 'string' && !info.password) {
278
this.storeInputLru(defaultValueMap.set(defaultValueKey, resolvedInput));
279
280
return resolvedInput !== undefined ? { value: resolvedInput as string, input: info } : undefined;
0 commit comments