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')}
`;