@codingame/monaco-vscode-dialogs-service-override 23.1.0 → 23.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/vscode/src/vs/workbench/browser/parts/dialogs/dialogHandler.js +2 -2
- package/vscode/src/vs/workbench/services/dialogs/browser/abstractFileDialogService.js +15 -15
- package/vscode/src/vs/workbench/services/dialogs/browser/fileDialogService.js +8 -8
- package/vscode/src/vs/workbench/services/dialogs/browser/simpleFileDialog.js +21 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-dialogs-service-override",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - dialogs service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.1.
|
|
19
|
-
"@codingame/monaco-vscode-api": "23.1.
|
|
20
|
-
"@codingame/monaco-vscode-f1bbc6d3-6129-583c-a2ba-c80b832993d2-common": "23.1.
|
|
18
|
+
"@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.1.1",
|
|
19
|
+
"@codingame/monaco-vscode-api": "23.1.1",
|
|
20
|
+
"@codingame/monaco-vscode-f1bbc6d3-6129-583c-a2ba-c80b832993d2-common": "23.1.1"
|
|
21
21
|
},
|
|
22
22
|
"main": "index.js",
|
|
23
23
|
"module": "index.js",
|
|
@@ -55,8 +55,8 @@ let BrowserDialogHandler = class BrowserDialogHandler extends AbstractDialogHand
|
|
|
55
55
|
}
|
|
56
56
|
async about(title, details, detailsToCopy) {
|
|
57
57
|
const { button } = await this.doShow(Severity.Info, title, [
|
|
58
|
-
( localize(
|
|
59
|
-
( localize(
|
|
58
|
+
( localize(3007, "&&Copy")),
|
|
59
|
+
( localize(3008, "OK"))
|
|
60
60
|
], details, 1);
|
|
61
61
|
if (button === 0) {
|
|
62
62
|
this.clipboardService.writeText(detailsToCopy);
|
|
@@ -121,17 +121,17 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
121
121
|
return ConfirmResult.DONT_SAVE;
|
|
122
122
|
}
|
|
123
123
|
let message;
|
|
124
|
-
let detail = ( localize(
|
|
124
|
+
let detail = ( localize(13642, "Your changes will be lost if you don't save them."));
|
|
125
125
|
if (fileNamesOrResources.length === 1) {
|
|
126
126
|
message = ( localize(
|
|
127
|
-
|
|
127
|
+
13643,
|
|
128
128
|
"Do you want to save the changes you made to {0}?",
|
|
129
129
|
typeof fileNamesOrResources[0] === 'string' ? fileNamesOrResources[0] : basename(fileNamesOrResources[0])
|
|
130
130
|
));
|
|
131
131
|
}
|
|
132
132
|
else {
|
|
133
133
|
message = ( localize(
|
|
134
|
-
|
|
134
|
+
13644,
|
|
135
135
|
"Do you want to save the changes to the following {0} files?",
|
|
136
136
|
fileNamesOrResources.length
|
|
137
137
|
));
|
|
@@ -144,12 +144,12 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
144
144
|
buttons: [
|
|
145
145
|
{
|
|
146
146
|
label: fileNamesOrResources.length > 1 ?
|
|
147
|
-
( localize(
|
|
148
|
-
( localize(
|
|
147
|
+
( localize(13645, "&&Save All")) :
|
|
148
|
+
( localize(13646, "&&Save")),
|
|
149
149
|
run: () => ConfirmResult.SAVE
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
|
-
label: ( localize(
|
|
152
|
+
label: ( localize(13647, "Do&&n't Save")),
|
|
153
153
|
run: () => ConfirmResult.DONT_SAVE
|
|
154
154
|
}
|
|
155
155
|
],
|
|
@@ -163,7 +163,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
163
163
|
return schema === Schemas.untitled ? [Schemas.file] : (schema !== Schemas.file ? [schema, Schemas.file] : [schema]);
|
|
164
164
|
}
|
|
165
165
|
async pickFileFolderAndOpenSimplified(schema, options, preferNewWindow) {
|
|
166
|
-
const title = ( localize(
|
|
166
|
+
const title = ( localize(13648, 'Open File or Folder'));
|
|
167
167
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
168
168
|
const uri = await this.pickResource({ canSelectFiles: true, canSelectFolders: true, canSelectMany: false, defaultUri: options.defaultUri, title, availableFileSystems });
|
|
169
169
|
if (uri) {
|
|
@@ -181,7 +181,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
async pickFileAndOpenSimplified(schema, options, preferNewWindow) {
|
|
184
|
-
const title = ( localize(
|
|
184
|
+
const title = ( localize(13649, 'Open File'));
|
|
185
185
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
186
186
|
const uri = await this.pickResource({ canSelectFiles: true, canSelectFolders: false, canSelectMany: false, defaultUri: options.defaultUri, title, availableFileSystems });
|
|
187
187
|
if (uri) {
|
|
@@ -198,7 +198,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
198
198
|
this.workspacesService.addRecentlyOpened([{ fileUri: uri, label: this.labelService.getUriLabel(uri, { appendWorkspaceSuffix: true }) }]);
|
|
199
199
|
}
|
|
200
200
|
async pickFolderAndOpenSimplified(schema, options) {
|
|
201
|
-
const title = ( localize(
|
|
201
|
+
const title = ( localize(13650, 'Open Folder'));
|
|
202
202
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
|
|
203
203
|
const uri = await this.pickResource({ canSelectFiles: false, canSelectFolders: true, canSelectMany: false, defaultUri: options.defaultUri, title, availableFileSystems });
|
|
204
204
|
if (uri) {
|
|
@@ -206,8 +206,8 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
206
206
|
}
|
|
207
207
|
}
|
|
208
208
|
async pickWorkspaceAndOpenSimplified(schema, options) {
|
|
209
|
-
const title = ( localize(
|
|
210
|
-
const filters = [{ name: ( localize(
|
|
209
|
+
const title = ( localize(13651, 'Open Workspace from File'));
|
|
210
|
+
const filters = [{ name: ( localize(13652, 'Workspace')), extensions: [WORKSPACE_EXTENSION] }];
|
|
211
211
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
|
|
212
212
|
const uri = await this.pickResource({ canSelectFiles: true, canSelectFolders: false, canSelectMany: false, defaultUri: options.defaultUri, title, filters, availableFileSystems });
|
|
213
213
|
if (uri) {
|
|
@@ -218,7 +218,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
218
218
|
if (!options.availableFileSystems) {
|
|
219
219
|
options.availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
220
220
|
}
|
|
221
|
-
options.title = ( localize(
|
|
221
|
+
options.title = ( localize(13653, 'Save As'));
|
|
222
222
|
const uri = await this.saveRemoteResource(options);
|
|
223
223
|
if (uri) {
|
|
224
224
|
this.addFileToRecentlyOpened(uri);
|
|
@@ -269,7 +269,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
269
269
|
getPickFileToSaveDialogOptions(defaultUri, availableFileSystems) {
|
|
270
270
|
const options = {
|
|
271
271
|
defaultUri,
|
|
272
|
-
title: ( localize(
|
|
272
|
+
title: ( localize(13654, "Save As")),
|
|
273
273
|
availableFileSystems
|
|
274
274
|
};
|
|
275
275
|
const ext = defaultUri ? extname(defaultUri) : undefined;
|
|
@@ -296,10 +296,10 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
296
296
|
matchingFilter = { name: trim(ext, '.').toUpperCase(), extensions: [trim(ext, '.')] };
|
|
297
297
|
}
|
|
298
298
|
options.filters = coalesce([
|
|
299
|
-
{ name: ( localize(
|
|
299
|
+
{ name: ( localize(13655, "All Files")), extensions: ['*'] },
|
|
300
300
|
matchingFilter,
|
|
301
301
|
...registeredLanguageFilters,
|
|
302
|
-
{ name: ( localize(
|
|
302
|
+
{ name: ( localize(13656, "No Extension")), extensions: [''] }
|
|
303
303
|
]);
|
|
304
304
|
return options;
|
|
305
305
|
}
|
|
@@ -28,7 +28,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
28
28
|
if (this.shouldUseSimplified(schema)) {
|
|
29
29
|
return super.pickFileFolderAndOpenSimplified(schema, options, false);
|
|
30
30
|
}
|
|
31
|
-
throw ( new Error(( localize(
|
|
31
|
+
throw ( new Error(( localize(13657, "Can't open folders, try adding a folder to the workspace instead."))));
|
|
32
32
|
}
|
|
33
33
|
addFileSchemaIfNeeded(schema, isFolder) {
|
|
34
34
|
return (schema === Schemas.untitled) ? [Schemas.file]
|
|
@@ -68,7 +68,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
68
68
|
if (this.shouldUseSimplified(schema)) {
|
|
69
69
|
return super.pickFolderAndOpenSimplified(schema, options);
|
|
70
70
|
}
|
|
71
|
-
throw ( new Error(( localize(
|
|
71
|
+
throw ( new Error(( localize(13657, "Can't open folders, try adding a folder to the workspace instead."))));
|
|
72
72
|
}
|
|
73
73
|
async pickWorkspaceAndOpen(options) {
|
|
74
74
|
options.availableFileSystems = this.getWorkspaceAvailableFileSystems(options);
|
|
@@ -80,7 +80,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
80
80
|
return super.pickWorkspaceAndOpenSimplified(schema, options);
|
|
81
81
|
}
|
|
82
82
|
throw ( new Error(( localize(
|
|
83
|
-
|
|
83
|
+
13658,
|
|
84
84
|
"Can't open workspaces, try adding a folder to the workspace instead."
|
|
85
85
|
))));
|
|
86
86
|
}
|
|
@@ -182,17 +182,17 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
182
182
|
}
|
|
183
183
|
const buttons = [
|
|
184
184
|
{
|
|
185
|
-
label: ( localize(
|
|
185
|
+
label: ( localize(13659, "&&Open Remote...")),
|
|
186
186
|
run: async () => { await this.commandService.executeCommand('workbench.action.remote.showMenu'); }
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
|
-
label: ( localize(
|
|
189
|
+
label: ( localize(13660, "&&Learn More")),
|
|
190
190
|
run: async () => { await this.openerService.open('https://aka.ms/VSCodeWebLocalFileSystemAccess'); }
|
|
191
191
|
}
|
|
192
192
|
];
|
|
193
193
|
if (context === 'open') {
|
|
194
194
|
buttons.push({
|
|
195
|
-
label: ( localize(
|
|
195
|
+
label: ( localize(13661, "Open &&Files...")),
|
|
196
196
|
run: async () => {
|
|
197
197
|
const files = await triggerUpload();
|
|
198
198
|
if (files) {
|
|
@@ -212,9 +212,9 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
212
212
|
}
|
|
213
213
|
await this.dialogService.prompt({
|
|
214
214
|
type: Severity.Warning,
|
|
215
|
-
message: ( localize(
|
|
215
|
+
message: ( localize(13662, "Opening Local Folders is Unsupported")),
|
|
216
216
|
detail: ( localize(
|
|
217
|
-
|
|
217
|
+
13663,
|
|
218
218
|
"Your browser doesn't support opening local folders.\nYou can either open single files or open a remote repository."
|
|
219
219
|
)),
|
|
220
220
|
buttons
|
|
@@ -41,7 +41,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
|
|
|
41
41
|
var OpenLocalFileCommand;
|
|
42
42
|
(function (OpenLocalFileCommand) {
|
|
43
43
|
OpenLocalFileCommand.ID = 'workbench.action.files.openLocalFile';
|
|
44
|
-
OpenLocalFileCommand.LABEL = ( localize(
|
|
44
|
+
OpenLocalFileCommand.LABEL = ( localize(13664, "Open Local File..."));
|
|
45
45
|
function handler() {
|
|
46
46
|
return accessor => {
|
|
47
47
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -53,7 +53,7 @@ var OpenLocalFileCommand;
|
|
|
53
53
|
var SaveLocalFileCommand;
|
|
54
54
|
(function (SaveLocalFileCommand) {
|
|
55
55
|
SaveLocalFileCommand.ID = 'workbench.action.files.saveLocalFile';
|
|
56
|
-
SaveLocalFileCommand.LABEL = ( localize(
|
|
56
|
+
SaveLocalFileCommand.LABEL = ( localize(13665, "Save Local File..."));
|
|
57
57
|
function handler() {
|
|
58
58
|
return accessor => {
|
|
59
59
|
const editorService = accessor.get(IEditorService);
|
|
@@ -69,7 +69,7 @@ var SaveLocalFileCommand;
|
|
|
69
69
|
var OpenLocalFolderCommand;
|
|
70
70
|
(function (OpenLocalFolderCommand) {
|
|
71
71
|
OpenLocalFolderCommand.ID = 'workbench.action.files.openLocalFolder';
|
|
72
|
-
OpenLocalFolderCommand.LABEL = ( localize(
|
|
72
|
+
OpenLocalFolderCommand.LABEL = ( localize(13666, "Open Local Folder..."));
|
|
73
73
|
function handler() {
|
|
74
74
|
return accessor => {
|
|
75
75
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -81,7 +81,7 @@ var OpenLocalFolderCommand;
|
|
|
81
81
|
var OpenLocalFileFolderCommand;
|
|
82
82
|
(function (OpenLocalFileFolderCommand) {
|
|
83
83
|
OpenLocalFileFolderCommand.ID = 'workbench.action.files.openLocalFileFolder';
|
|
84
|
-
OpenLocalFileFolderCommand.LABEL = ( localize(
|
|
84
|
+
OpenLocalFileFolderCommand.LABEL = ( localize(13667, "Open Local..."));
|
|
85
85
|
function handler() {
|
|
86
86
|
return accessor => {
|
|
87
87
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -200,7 +200,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
200
200
|
}
|
|
201
201
|
if ((this.scheme !== Schemas.file) && !this.fileService.hasProvider(defaultUri)) {
|
|
202
202
|
this.notificationService.info(( localize(
|
|
203
|
-
|
|
203
|
+
13668,
|
|
204
204
|
'File system provider for {0} is not available.',
|
|
205
205
|
(defaultUri.toString())
|
|
206
206
|
)));
|
|
@@ -270,12 +270,12 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
270
270
|
this.filePickBox.matchOnLabel = false;
|
|
271
271
|
this.filePickBox.sortByLabel = false;
|
|
272
272
|
this.filePickBox.ignoreFocusOut = true;
|
|
273
|
-
this.filePickBox.placeholder = ( localize(
|
|
273
|
+
this.filePickBox.placeholder = ( localize(13669, "Folder path"));
|
|
274
274
|
this.filePickBox.ok = true;
|
|
275
275
|
this.filePickBox.okLabel = typeof this.options.openLabel === 'string' ? this.options.openLabel : this.options.openLabel?.withoutMnemonic;
|
|
276
276
|
if ((this.scheme !== Schemas.file) && this.options && this.options.availableFileSystems && (this.options.availableFileSystems.length > 1) && (this.options.availableFileSystems.indexOf(Schemas.file) > -1)) {
|
|
277
277
|
this.filePickBox.customButton = true;
|
|
278
|
-
this.filePickBox.customLabel = ( localize(
|
|
278
|
+
this.filePickBox.customLabel = ( localize(13670, 'Show Local'));
|
|
279
279
|
let action;
|
|
280
280
|
if (isSave) {
|
|
281
281
|
action = SaveLocalFileCommand;
|
|
@@ -427,7 +427,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
427
427
|
setButtons() {
|
|
428
428
|
this.filePickBox.buttons = [{
|
|
429
429
|
iconClass: this._showDotFiles ? ThemeIcon.asClassName(Codicon.eye) : ThemeIcon.asClassName(Codicon.eyeClosed),
|
|
430
|
-
tooltip: this._showDotFiles ? ( localize(
|
|
430
|
+
tooltip: this._showDotFiles ? ( localize(13671, "Hide dot files")) : ( localize(13672, "Show dot files")),
|
|
431
431
|
alwaysVisible: true
|
|
432
432
|
}];
|
|
433
433
|
}
|
|
@@ -587,7 +587,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
587
587
|
return (await this.updateItems(valueUri)) ? UpdateResult.UpdatedWithTrailing : UpdateResult.Updated;
|
|
588
588
|
}
|
|
589
589
|
else if (this.endsWithSlash(value)) {
|
|
590
|
-
this.filePickBox.validationMessage = ( localize(
|
|
590
|
+
this.filePickBox.validationMessage = ( localize(13673, 'The path does not exist. Use ~ to go to your home directory.'));
|
|
591
591
|
this.badPath = value;
|
|
592
592
|
return UpdateResult.InvalidPath;
|
|
593
593
|
}
|
|
@@ -745,7 +745,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
745
745
|
prompt.ignoreFocusOut = true;
|
|
746
746
|
prompt.ok = true;
|
|
747
747
|
prompt.customButton = true;
|
|
748
|
-
prompt.customLabel = ( localize(
|
|
748
|
+
prompt.customLabel = ( localize(13674, 'Cancel'));
|
|
749
749
|
prompt.value = this.pathFromUri(uri);
|
|
750
750
|
let isResolving = false;
|
|
751
751
|
return ( new Promise(resolve => {
|
|
@@ -773,7 +773,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
773
773
|
}
|
|
774
774
|
async validate(uri) {
|
|
775
775
|
if (uri === undefined) {
|
|
776
|
-
this.filePickBox.validationMessage = ( localize(
|
|
776
|
+
this.filePickBox.validationMessage = ( localize(13675, 'Please enter a valid path.'));
|
|
777
777
|
return Promise.resolve(false);
|
|
778
778
|
}
|
|
779
779
|
let stat;
|
|
@@ -786,36 +786,36 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
786
786
|
}
|
|
787
787
|
if (this.requiresTrailing) {
|
|
788
788
|
if (stat?.isDirectory) {
|
|
789
|
-
this.filePickBox.validationMessage = ( localize(
|
|
789
|
+
this.filePickBox.validationMessage = ( localize(13676, 'The folder already exists. Please use a new file name.'));
|
|
790
790
|
return Promise.resolve(false);
|
|
791
791
|
}
|
|
792
792
|
else if (stat) {
|
|
793
793
|
const message = ( localize(
|
|
794
|
-
|
|
794
|
+
13677,
|
|
795
795
|
'{0} already exists. Are you sure you want to overwrite it?',
|
|
796
796
|
basename(uri)
|
|
797
797
|
));
|
|
798
798
|
return this.yesNoPrompt(uri, message);
|
|
799
799
|
}
|
|
800
800
|
else if (!(isValidBasename(basename(uri), this.isWindows))) {
|
|
801
|
-
this.filePickBox.validationMessage = ( localize(
|
|
801
|
+
this.filePickBox.validationMessage = ( localize(13678, 'Please enter a valid file name.'));
|
|
802
802
|
return Promise.resolve(false);
|
|
803
803
|
}
|
|
804
804
|
else if (!statDirname) {
|
|
805
805
|
const message = ( localize(
|
|
806
|
-
|
|
806
|
+
13679,
|
|
807
807
|
'The folder {0} does not exist. Would you like to create it?',
|
|
808
808
|
basename(dirname(uri))
|
|
809
809
|
));
|
|
810
810
|
return this.yesNoPrompt(uri, message);
|
|
811
811
|
}
|
|
812
812
|
else if (!statDirname.isDirectory) {
|
|
813
|
-
this.filePickBox.validationMessage = ( localize(
|
|
813
|
+
this.filePickBox.validationMessage = ( localize(13680, 'Please enter a path that exists.'));
|
|
814
814
|
return Promise.resolve(false);
|
|
815
815
|
}
|
|
816
816
|
else if (statDirname.readonly) {
|
|
817
817
|
this.filePickBox.validationMessage = ( localize(
|
|
818
|
-
|
|
818
|
+
13681,
|
|
819
819
|
'This folder cannot be used as a save destination. Please choose another folder'
|
|
820
820
|
));
|
|
821
821
|
return Promise.resolve(false);
|
|
@@ -823,19 +823,19 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
823
823
|
}
|
|
824
824
|
else {
|
|
825
825
|
if (!stat) {
|
|
826
|
-
this.filePickBox.validationMessage = ( localize(
|
|
826
|
+
this.filePickBox.validationMessage = ( localize(13680, 'Please enter a path that exists.'));
|
|
827
827
|
return Promise.resolve(false);
|
|
828
828
|
}
|
|
829
829
|
else if (uri.path === '/' && this.isWindows) {
|
|
830
|
-
this.filePickBox.validationMessage = ( localize(
|
|
830
|
+
this.filePickBox.validationMessage = ( localize(13682, 'Please start the path with a drive letter.'));
|
|
831
831
|
return Promise.resolve(false);
|
|
832
832
|
}
|
|
833
833
|
else if (stat.isDirectory && !this.allowFolderSelection) {
|
|
834
|
-
this.filePickBox.validationMessage = ( localize(
|
|
834
|
+
this.filePickBox.validationMessage = ( localize(13683, 'Please select a file.'));
|
|
835
835
|
return Promise.resolve(false);
|
|
836
836
|
}
|
|
837
837
|
else if (!stat.isDirectory && !this.allowFileSelection) {
|
|
838
|
-
this.filePickBox.validationMessage = ( localize(
|
|
838
|
+
this.filePickBox.validationMessage = ( localize(13684, 'Please select a folder.'));
|
|
839
839
|
return Promise.resolve(false);
|
|
840
840
|
}
|
|
841
841
|
}
|