Skip to content

Commit

Permalink
TF-3002 [WEB] Hide Select all message this page when current list e…
Browse files Browse the repository at this point in the history
…mails is empty
  • Loading branch information
dab246 committed Sep 13, 2024
1 parent 6f63919 commit a64895a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class MailboxDashBoardView extends BaseMailboxDashBoardView {
);
}),
Obx(() {
if (controller.validateNoEmailsInTrashAndSpamFolder()) {
if (controller.emailsInCurrentMailbox.isEmpty) {
return const SizedBox.shrink();
} else {
return Padding(
Expand Down

0 comments on commit a64895a

Please sign in to comment.