From 953777ec5b79f8251d946ed6cab38d60cab47b6d Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 7 Nov 2023 16:25:22 +0700 Subject: [PATCH] TF-2302 Fix move folder Signed-off-by: dab246 (cherry picked from commit 48a07750c00b10b01c54a65b5b44434d9aababec) --- lib/features/mailbox/presentation/mailbox_controller.dart | 5 ++++- .../mailbox/presentation/search_mailbox_controller.dart | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/features/mailbox/presentation/mailbox_controller.dart b/lib/features/mailbox/presentation/mailbox_controller.dart index 6585af646..593948ba7 100644 --- a/lib/features/mailbox/presentation/mailbox_controller.dart +++ b/lib/features/mailbox/presentation/mailbox_controller.dart @@ -869,7 +869,10 @@ class MailboxController extends BaseMailboxController with MailboxActionHandlerM actionIcon: SvgPicture.asset(_imagePaths.icUndo)); } - _refreshMailboxChanges(currentMailboxState: success.currentMailboxState); + _refreshMailboxChanges( + currentMailboxState: success.currentMailboxState, + properties: MailboxConstants.propertiesDefault + ); } void _undoMovingMailbox(MoveMailboxRequest newMoveRequest) { diff --git a/lib/features/search/mailbox/presentation/search_mailbox_controller.dart b/lib/features/search/mailbox/presentation/search_mailbox_controller.dart index 11a0ef6ba..5e65df6e6 100644 --- a/lib/features/search/mailbox/presentation/search_mailbox_controller.dart +++ b/lib/features/search/mailbox/presentation/search_mailbox_controller.dart @@ -407,7 +407,10 @@ class SearchMailboxController extends BaseMailboxController with MailboxActionHa ); } - _refreshMailboxChanges(mailboxState: success.currentMailboxState); + _refreshMailboxChanges( + mailboxState: success.currentMailboxState, + properties: MailboxConstants.propertiesDefault + ); } void _undoMovingMailbox(MoveMailboxRequest newMoveRequest) {