Skip to content

Commit 94f3ef1

Browse files
fix(data): change type of filter observable (#2349)
Closes #2337
1 parent 6df257d commit 94f3ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/data/src/entity-services/entity-collection-service-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ export class EntityCollectionServiceBase<
450450
errors$: Observable<EntityAction>;
451451

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

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

0 commit comments

Comments
 (0)