From 36573c6dd0aae08267d9bcee2fb71c25d153d8f0 Mon Sep 17 00:00:00 2001 From: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> Date: Wed, 11 Feb 2026 10:23:55 -0500 Subject: [PATCH] docs: fix reference to parent inputs in child extension (#32801) Signed-off-by: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> --- docs/frontend-system/architecture/20-extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/frontend-system/architecture/20-extensions.md b/docs/frontend-system/architecture/20-extensions.md index 99b77f5448..106ab5340a 100644 --- a/docs/frontend-system/architecture/20-extensions.md +++ b/docs/frontend-system/architecture/20-extensions.md @@ -399,7 +399,7 @@ const parent = createExtension({ // Create a child extension that attaches to the parent's input const child = createExtension({ - attachTo: page.inputs.children, // Direct reference to the input + attachTo: parent.inputs.children, // Direct reference to the input output: [coreExtensionData.reactElement], // Outputs are verified against the parent input // other options... });