Skip to content

Commit

Permalink
Change filter name for audience
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Castillo <[email protected]>
  • Loading branch information
tomrndom committed Jul 12, 2024
1 parent 95ac9b1 commit ff58842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/ticket-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -900,8 +900,8 @@ const parseTicketTypeFilters = (filters, term = null) => {

const filter = [];

if (filters.audienceFilter?.length > 0) {
filter.push(filters.audienceFilter.reduce(
if (filters.audience_filter?.length > 0) {
filter.push(filters.audience_filter.reduce(
(accumulator, aud) => accumulator +(accumulator !== '' ? ',':'') +`audience==${aud}`,
''
));
Expand Down

0 comments on commit ff58842

Please sign in to comment.