From f475182c7d9ff9c952a2035ff386d292c2e5d2ea Mon Sep 17 00:00:00 2001 From: Brian Schwind Date: Sun, 15 Jun 2025 18:45:55 +0900 Subject: [PATCH] fix(playground): initialize tree nodes with a 'plain' class --- docs/src/assets/js/playground.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/assets/js/playground.js b/docs/src/assets/js/playground.js index babb2afb..aa0cc738 100644 --- a/docs/src/assets/js/playground.js +++ b/docs/src/assets/js/playground.js @@ -292,10 +292,10 @@ window.initializePlayground = async (opts) => { const nodeClass = displayName === 'ERROR' || displayName.startsWith('MISSING') - ? 'node-link error' + ? 'node-link error plain' : cursor.nodeIsNamed - ? 'node-link named' - : 'node-link anonymous'; + ? 'node-link named plain' + : 'node-link anonymous plain'; row = `
${" ".repeat(indentLevel)}${fieldName}` + `