From 9fa7b6e31c58532d7a5fb587b90165d27fb58ecd Mon Sep 17 00:00:00 2001 From: Thomas Taylor Date: Fri, 14 Aug 2026 12:39:32 +0100 Subject: [PATCH] Update: state displayTitle's link to title in the schema (fixes #875) displayTitle mirrors title in the editor, but the schema only names the DisplayTitle editor - what that editor name means is hardcoded in the tool resolving it, so the relationship can't be reused for any other pair of fields. Add _adapt.linkedTo to say it directly. Additive: _backboneForms is unchanged, so nothing consuming it is affected, and no runtime behaviour changes. --- schema/content.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schema/content.schema.json b/schema/content.schema.json index c11be6bf..de4a15e7 100644 --- a/schema/content.schema.json +++ b/schema/content.schema.json @@ -39,7 +39,8 @@ "description": "When viewing an element - this is the title that will be displayed on the page", "default": "", "_adapt": { - "translatable": true + "translatable": true, + "linkedTo": "title" }, "_backboneForms": "DisplayTitle" },