From 335fab23b31300d3191049eb5302699a094612ae Mon Sep 17 00:00:00 2001 From: 180107072 Date: Sun, 25 Jan 2026 22:29:26 +0500 Subject: [PATCH] fix(GraphPlayground): skip editor updates for multi-block selections --- src/stories/Playground/Editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/Playground/Editor/index.tsx b/src/stories/Playground/Editor/index.tsx index 72465ec5..e82389fd 100644 --- a/src/stories/Playground/Editor/index.tsx +++ b/src/stories/Playground/Editor/index.tsx @@ -63,7 +63,7 @@ export const ConfigEditor = React.forwardRef(function ConfigEditor( }); }, updateBlocks: (blocks: TBlock[]) => { - if (!monacoRef.current) { + if (!monacoRef.current || blocks.length > 1) { return; } const model = monacoRef.current.getModel();