From 528e9f29d45e8c3dca3aeeabf9a1a5d2bfecb571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 10 Jan 2023 21:48:22 +0100 Subject: [PATCH] use BehaviorSubject --- .../src/backoffice/shared/components/section/section.context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/section/section.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/section/section.context.ts index 7a123bf946..f2b40f347d 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/section/section.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/section/section.context.ts @@ -17,7 +17,7 @@ export class UmbSectionContext { public readonly activeTreeItem = this._activeTreeItem.asObservable(); // TODO: what is the best context to put this in? - private _activeView = new UniqueBehaviorSubject(undefined); + private _activeView = new BehaviorSubject(undefined); public readonly activeView = this._activeView.asObservable(); constructor(sectionManifest: ManifestSection) {