Skip to content

Commit 34b8d2e

Browse files
authored
Update Code to 1.97.2 (#7205)
1 parent 3172cb1 commit 34b8d2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

patches/external-file-actions.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/dialogs/browser/simpleFi
243243
@@ -284,20 +284,22 @@ export class SimpleFileDialog extends Di
244244
this.filePickBox.ignoreFocusOut = true;
245245
this.filePickBox.ok = true;
246-
this.filePickBox.okLabel = this.options.openLabel;
246+
this.filePickBox.okLabel = typeof this.options.openLabel === 'string' ? this.options.openLabel : this.options.openLabel?.withoutMnemonic;
247247
- if ((this.scheme !== Schemas.file) && this.options && this.options.availableFileSystems && (this.options.availableFileSystems.length > 1) && (this.options.availableFileSystems.indexOf(Schemas.file) > -1)) {
248248
- this.filePickBox.customButton = true;
249249
- this.filePickBox.customLabel = nls.localize('remoteFileDialog.local', 'Show Local');

0 commit comments

Comments
 (0)