mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 099a7622e6e90dbcc226e428d4e35a72cb19ecbc (#9646)
* Merge from vscode 099a7622e6e90dbcc226e428d4e35a72cb19ecbc * fix strict
This commit is contained in:
@@ -251,10 +251,10 @@ export class NativeWindow extends Disposable {
|
||||
const file = toResource(this.editorService.activeEditor, { supportSideBySide: SideBySideEditor.MASTER, filterByScheme: Schemas.file });
|
||||
|
||||
// Represented Filename
|
||||
this.updateRepresentedFilename(file ? file.fsPath : undefined);
|
||||
this.updateRepresentedFilename(file?.fsPath);
|
||||
|
||||
// Custom title menu
|
||||
this.provideCustomTitleContextMenu(file ? file.fsPath : undefined);
|
||||
this.provideCustomTitleContextMenu(file?.fsPath);
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user