Allow filtering no projects too

This commit is contained in:
Miroslav Mazel
2023-08-23 17:28:15 +02:00
parent f7ee0b7a0e
commit af6d734da0

View File

@ -170,7 +170,7 @@ class FilterSheet extends StatelessWidget {
hiddenProjects
.removeWhere((p) => p == project?.id);
} else {
hiddenProjects.add(project!.id);
hiddenProjects.add(project?.id);
}
dashboardBloc.add(
FilterProjectsChangedEvent(hiddenProjects));