We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In EntityCollectionServiceBase:
/** Observable of the filter pattern applied by the entity collection's filter function */ filter$: Observable<string> | Store<string>;
But filter can have any type:
any
/** * Set the pattern that the collection's filter applies * when using the `filteredEntities` selector. */ setFilter(pattern: any): void;
filter$: Observable<any> | Store<any>;
[ ] Yes (Assistance is provided if you need help submitting a pull request) [X] No
The text was updated successfully, but these errors were encountered:
Hi @timdeschryver/ @brandonroberts , I will work on it.
Sorry, something went wrong.
fix(data): change type of filter observable (#2349)
94f3ef1
Closes #2337
Successfully merging a pull request may close this issue.
Minimal reproduction of the bug/regression with instructions:
In EntityCollectionServiceBase:
But filter can have
any
type:Expected behavior:
I would be willing to submit a PR to fix this issue
[ ] Yes (Assistance is provided if you need help submitting a pull request)
[X] No
The text was updated successfully, but these errors were encountered: