Skip to content

Commit

Permalink
Merge pull request #1512 from culturecreates/hotfix/issue-1510
Browse files Browse the repository at this point in the history
Hotfix/issue 1510
  • Loading branch information
AbhishekPAnil authored Dec 13, 2024
2 parents 72f0e7a + 7cb38dd commit 2a27c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Dashboard/Events/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ function Events() {
let sortQuery = new URLSearchParams();
let usersQuery, publicationQuery, organizerQuery;

userFilter?.forEach((user) => query.append('user', user));
userFilter?.forEach((user) => query.append('created-by', user));
organizerFilter?.forEach((organizer) => query.append('person-organization', organizer));
filter?.publication?.forEach((state) => query.append('publish-state', state));
if (userFilter?.length > 0) usersQuery = encodeURIComponent(userFilter);
Expand Down

0 comments on commit 2a27c33

Please sign in to comment.