Navigation refactor

This commit is contained in:
Hillel Coren 2020-06-16 11:04:44 +03:00
parent 118da7677d
commit 9540b364b9
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ List<String> filteredClientsSelector(
final client = clientMap[clientId]; final client = clientMap[clientId];
final group = groupMap[client.groupId] ?? GroupEntity(id: client.groupId); final group = groupMap[client.groupId] ?? GroupEntity(id: client.groupId);
if (clientListState.filterEntityId != null) { if (clientListState.filterEntityType == EntityType.group) {
if (!clientListState.entityMatchesFilter(group)) { if (!clientListState.entityMatchesFilter(group)) {
return false; return false;
} }