From eae35a27ab448fe21e0c7fbba0815dd24c56a606 Mon Sep 17 00:00:00 2001 From: Engiber Lozada <89547469+engijlr@users.noreply.github.com> Date: Mon, 17 Nov 2025 14:54:30 +0100 Subject: [PATCH] Block Entry Context: Update the settingsPropertyValueByAlias to observe settings. (#20861) Replaced content for settings in the settingsPropertyValueByAlias. --- .../src/packages/block/block/context/block-entry.context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block/context/block-entry.context.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block/context/block-entry.context.ts index 8df8e02973..fec351c0d6 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/block/block/context/block-entry.context.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/block/block/context/block-entry.context.ts @@ -239,7 +239,7 @@ export abstract class UmbBlockEntryContext< await this.#settingsStructurePromise; return mergeObservables( [ - this.#content.asObservablePart((data) => data?.values?.filter((x) => x?.alias === propertyAlias)), + this.#settings.asObservablePart((data) => data?.values?.filter((x) => x?.alias === propertyAlias)), await this.propertyVariantId(this.#settingsStructure!, propertyAlias), ], ([propertyValues, propertyVariantId]) => {