Skip to content

Commit

Permalink
fix: query for multiselect filter
Browse files Browse the repository at this point in the history
  • Loading branch information
GursheenK committed Sep 27, 2023
1 parent 9d15124 commit e7239e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ def add_common_filters(self):
self.qb_selection_filter.append(self.filters.party_type == self.ple.party_type)

if self.filters.get("party"):
self.qb_selection_filter.append(self.filters.party == self.ple.party)
self.qb_selection_filter.append(self.ple.party.isin(self.filters.party))

if self.filters.party_account:
self.qb_selection_filter.append(self.ple.account == self.filters.party_account)
Expand Down

0 comments on commit e7239e0

Please sign in to comment.