fix strict null check

This commit is contained in:
Sandeep Somavarapu
2019-03-11 16:27:31 +01:00
parent ecd66fdf7e
commit 10c2f55ecc
+1 -1
View File
@@ -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);