From a290601e5e0bdfac0dcc28c8e262f52df9150daf Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Tue, 22 Apr 2025 09:30:58 +0200 Subject: [PATCH] fix property shared labels in content type workspace --- .../design/content-type-design-editor-property.element.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.ts b/src/Umbraco.Web.UI.Client/src/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.ts index ce58e2405b..0aa7fde173 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.ts @@ -348,13 +348,13 @@ export class UmbContentTypeDesignEditorPropertyElement extends UmbLitElement { `; } - if (this.ownerVariesByCulture && this.property.variesByCulture && !this.property.variesBySegment) { + if (this.ownerVariesByCulture && !this.property.variesByCulture) { return html` ${this.localize.term('contentTypeEditor_cultureInvariantLabel')} `; } - if (this.ownerVariesBySegment && !this.property.variesByCulture && this.property.variesBySegment) { + if (this.ownerVariesBySegment && !this.property.variesBySegment) { return html` ${this.localize.term('contentTypeEditor_segmentInvariantLabel')} `;