Skip to content

Commit

Permalink
removed app list menu button (#643)
Browse files Browse the repository at this point in the history
No longer needed since app names are now links
  • Loading branch information
sei-aschlackman authored Apr 2, 2024
1 parent db44d23 commit 75a52a3
Showing 1 changed file with 1 addition and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,31 +32,12 @@
[ngClass]="mini ? 'justify-content-center' : null"
>
<img class="lefticon" src="{{ app.icon }}" alt="{{ app.name }}" />
<div *ngIf="!mini" class="app-name ps-2">
<div *ngIf="!mini" class="app-name px-2">
{{ app.name }}
</div>
</div>
</a>
<button
*ngIf="!mini"
mat-icon-button
[matMenuTriggerFor]="menu"
aria-label="{{ app.name }} Menu"
>
<mat-icon svgIcon="ic_chevron_right_24px"></mat-icon>
</button>
</div>

<mat-menu #menu="matMenu">
<button
mat-menu-item
*ngIf="app.embeddable"
(click)="openInFocusedApp(app)"
>
Open Here
</button>
<button mat-menu-item (click)="openInTab(app)">Open in New Tab</button>
</mat-menu>
</mat-list-item>
</mat-list>
</div>

0 comments on commit 75a52a3

Please sign in to comment.