Skip to content

Commit

Permalink
fix(messagelist): Only show message action buttons when messages are …
Browse files Browse the repository at this point in the history
…selected

Fixes: runbox#1559
  • Loading branch information
castaway committed Jan 22, 2025
1 parent c1b3cb1 commit 344247e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h3 class="noMessageSelectedNotification">No Message Selected</h3>
</button>

<!-- Message action menu for regular screens -->
<div *ngIf="!mobileQuery.matches && !hasChildRouterOutlet" class="messageListActionButtonsRight" #toolbarListButtonContainer>
<div *ngIf="!mobileQuery.matches && !hasChildRouterOutlet && showSelectOperations" class="messageListActionButtonsRight" #toolbarListButtonContainer>
<button *ngIf="morelistbuttonindex>0" mat-icon-button matTooltip="Move selected message(s) to folder" (click)="moveToFolder()">
<mat-icon svgIcon="folder"></mat-icon>
</button>
Expand Down

0 comments on commit 344247e

Please sign in to comment.