From 345ecc3db07cb31f8848e42e7000c1ccb7891f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Mon, 9 Jan 2023 20:29:07 +0100 Subject: [PATCH] correct comment --- .../src/backoffice/shared/collection/collection.context.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/collection/collection.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/collection/collection.context.ts index 1118763ca4..828205334d 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/collection/collection.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/collection/collection.context.ts @@ -24,8 +24,8 @@ export class UmbCollectionContext< /* TODO: - private _search: BehaviorSubject = new BehaviorSubject(''); - public readonly search: Observable = this._search.asObservable(); + private _search = new UniqueBehaviorSubject(''); + public readonly search = this._search.asObservable(); */ constructor(host: UmbControllerHostInterface, entityKey: string | null, storeAlias: string) {