提交 4e23501d 编写于 作者: A Alex Ross

Allow empty string in variables promptString

Fixes ##68617
上级 6d0e6aa0
...@@ -250,7 +250,7 @@ export abstract class BaseConfigurationResolverService extends AbstractVariableR ...@@ -250,7 +250,7 @@ export abstract class BaseConfigurationResolverService extends AbstractVariableR
inputOptions.value = info.default; inputOptions.value = info.default;
} }
return this.quickInputService.input(inputOptions).then(resolvedInput => { return this.quickInputService.input(inputOptions).then(resolvedInput => {
return resolvedInput ? resolvedInput : undefined; return resolvedInput;
}); });
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册