Skip to content

Commit

Permalink
Merge pull request #532 from G-Core/WEB-5780
Browse files Browse the repository at this point in the history
fixed burger menu bug
  • Loading branch information
slinkyslinky authored Nov 10, 2023
2 parents ec344d4 + 20a3fd6 commit 8859ec1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/left-bar-menu/left-bar-menu.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{ activeMenuItem?.name }}
</div>
</div>
<div class="side-nav-list" *ngIf="menuItems?.length">
<div class="side-nav-list">
<div class="side-nav-list-top">
<div class="side-nav-list-close" (click)="toggleMenu($event)">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
Expand All @@ -28,7 +28,7 @@
</svg>
</div>
</div>
<div class="side-nav-list-middle" *ngIf="!isHomePage">
<div class="side-nav-list-middle" *ngIf="menuItems?.length">
<ng-container *ngFor="let menuItem of menuItems">
<a
*ngIf="!menuItem.children || !menuItem.children.length"
Expand All @@ -44,7 +44,7 @@
></gc-dropdown-menu-item>
</ng-container>
</div>
<div class="side-nav-list-bottom {{ isHomePage ? 'side-nav-list-bottom_full' : '' }}">
<div class="side-nav-list-bottom {{ !menuItems?.length ? 'side-nav-list-bottom_full' : '' }}">
<gc-redirect-link-button
class="side-nav-list-button"
[variant]="'secondary'"
Expand Down

0 comments on commit 8859ec1

Please sign in to comment.