mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 18:48:33 -05:00
Merge from vscode de81ccf04849309f843db21130c806a5783678f7 (#4738)
This commit is contained in:
@@ -85,7 +85,8 @@ export class FileDialogService implements IFileDialogService {
|
||||
}
|
||||
|
||||
private shouldUseSimplified(schema: string): boolean {
|
||||
return (schema !== Schemas.file) || (this.configurationService.getValue('workbench.dialogs.useSimplified') === 'true');
|
||||
const setting = this.configurationService.getValue('workbench.dialogs.useSimplified');
|
||||
return (schema !== Schemas.file) || ((setting === 'true') || (setting === true));
|
||||
}
|
||||
|
||||
private ensureFileSchema(schema: string): string[] {
|
||||
|
||||
Reference in New Issue
Block a user