Skip to content

Commit

Permalink
fix for dynamic filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyatakov committed Jan 15, 2025
1 parent 8efc8e8 commit bede276
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class DocumentsSourceAddon {

const dynFilters = {};
for (const [key, value] of Object.entries(await ref.getFilters(user))) {
dynFilters[key] = { $eq: value };
dynFilters[key] = value;
}

Object.assign(filters, dynFilters);
Expand Down

0 comments on commit bede276

Please sign in to comment.