Skip to content

Commit

Permalink
fix(data): change type of filter observable (#2349)
Browse files Browse the repository at this point in the history
Closes #2337
  • Loading branch information
santoshyadavdev authored Feb 8, 2020
1 parent 6df257d commit 94f3ef1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export class EntityCollectionServiceBase<
errors$: Observable<EntityAction>;

/** Observable of the filter pattern applied by the entity collection's filter function */
filter$: Observable<string> | Store<string>;
filter$: Observable<any> | Store<any>;

/** Observable of entities in the cached collection that pass the filter function */
filteredEntities$: Observable<T[]> | Store<T[]>;
Expand Down

0 comments on commit 94f3ef1

Please sign in to comment.