Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed Oct 9, 2022
2 parents d0b50c8 + 7870441 commit caa058d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/redux/app/app_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -980,4 +980,14 @@ class SelectionState {
final String selectedId;
final String filterEntityId;
final EntityType filterEntityType;

@override
bool operator ==(Object other) {
if (other is SelectionState) {
return selectedId == other.selectedId &&
filterEntityId == other.filterEntityId &&
filterEntityType == other.filterEntityType;
}
return false;
}
}

0 comments on commit caa058d

Please sign in to comment.