Skip to content

Commit 344247e

Browse files
committed
fix(messagelist): Only show message action buttons when messages are selected
Fixes: #1559
1 parent c1b3cb1 commit 344247e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h3 class="noMessageSelectedNotification">No Message Selected</h3>
238238
</button>
239239

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

0 commit comments

Comments
 (0)