diff --git a/npm/ng-packs/packages/core/src/lib/components/dynamic-layout.component.ts b/npm/ng-packs/packages/core/src/lib/components/dynamic-layout.component.ts index bd09876ba6..2548cfece6 100644 --- a/npm/ng-packs/packages/core/src/lib/components/dynamic-layout.component.ts +++ b/npm/ng-packs/packages/core/src/lib/components/dynamic-layout.component.ts @@ -17,14 +17,14 @@ import { TreeNode } from '../utils/tree-utils'; `, }) export class DynamicLayoutComponent implements OnDestroy { layout: Type; - isLayoutShow = true; + isLayoutVisible = true; constructor( injector: Injector, @@ -71,8 +71,8 @@ export class DynamicLayoutComponent implements OnDestroy { private listenToLanguageChange() { this.localizationService.languageChange.pipe(takeUntilDestroy(this)).subscribe(() => { - this.isLayoutShow = false; - setTimeout(() => (this.isLayoutShow = true), 0); + this.isLayoutVisible = false; + setTimeout(() => (this.isLayoutVisible = true), 0); }); }