Skip to content

Commit

Permalink
TF-3004 Fix open close advanced search looses data
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Sep 18, 2024
1 parent e5e4a68 commit af9bf8b
Show file tree
Hide file tree
Showing 7 changed files with 262 additions and 90 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ class StartSearchEmailAction extends DashBoardAction {
List<Object?> get props => [filter];
}

class StartSearchEmailByQueryStringAction extends DashBoardAction {
final String queryString;

StartSearchEmailByQueryStringAction({required this.queryString});

@override
List<Object?> get props => [queryString];
}

class EmptyTrashAction extends DashBoardAction {

final BuildContext context;
Expand Down
Loading

0 comments on commit af9bf8b

Please sign in to comment.