Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

fix: addFilter setFilter parameters #65

Merged
merged 1 commit into from
Dec 1, 2021
Merged

Conversation

frenautvh
Copy link
Contributor

previous behavior :

// calling :
addFilter('foo', 'in', [1, 2]);

// results in :
apiOptions.filters = {
  field: 'foo',
  comparator: 'in',
  reference: [ // this is wrong !!!
    [1, 2],
  ],
};

notice that the reference parameter is wrong because we have ...reference in the method declaration function (field, comparator, ...reference) and thus we get a nested array

@frenautvh frenautvh force-pushed the fix/filter-reference branch from abfc607 to d53e56f Compare December 1, 2021 10:18
@@ -129,7 +129,7 @@ export default /* @ngInject */ function (
{
field,
comparator,
reference: angular.isArray(reference) ? reference.join(',') : reference,
reference,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@antleblanc antleblanc merged commit 1b90636 into master Dec 1, 2021
@antleblanc antleblanc deleted the fix/filter-reference branch December 1, 2021 10:49
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Development

Successfully merging this pull request may close these issues.

3 participants