mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-12 01:28:01 +01:00
fix strict null check
This commit is contained in:
@@ -92,7 +92,7 @@ class ViewContainersRegistryImpl implements IViewContainersRegistry {
|
||||
|
||||
const viewContainer = new class extends ViewContainer {
|
||||
constructor() {
|
||||
super(id, hideIfEmpty, extensionId);
|
||||
super(id, !!hideIfEmpty, extensionId);
|
||||
}
|
||||
};
|
||||
this.viewContainers.set(id, viewContainer);
|
||||
|
||||
Reference in New Issue
Block a user