Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion modules/ui/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@
<app-bypass></app-bypass>
<ng-container *ngIf="viewModel$ | async as vm">
<mat-drawer-container hasBackdrop="false" class="app-container" autosize>
<mat-drawer mode="side" role="navigation" opened cdkFocusInitial>
<mat-drawer
mode="side"
role="navigation"
opened
cdkFocusInitial
[disableClose]="true">
<div class="app-sidebar" #navigation>
<app-side-button-menu [menuItems]="menuItems"> </app-side-button-menu>
<div class="nav-items-container">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
-->
<ng-container *ngIf="entities().length > 0 || isOpenEntityForm(); else empty">
<mat-drawer-container class="layout-container">
<mat-drawer mode="side" opened class="layout-container-left-panel">
<mat-drawer
mode="side"
opened
class="layout-container-left-panel"
[disableClose]="true">
<mat-toolbar class="layout-container-left-panel-toolbar">
<mat-toolbar-row
><h2 class="title">{{ title() }}</h2></mat-toolbar-row
Expand Down
Loading