diff --git a/desktop/plugins/public/ui-debugger/components/sidebar/inspector/AttributesInspector.tsx b/desktop/plugins/public/ui-debugger/components/sidebar/inspector/AttributesInspector.tsx index 6c2e077e6..5b9c96bcf 100644 --- a/desktop/plugins/public/ui-debugger/components/sidebar/inspector/AttributesInspector.tsx +++ b/desktop/plugins/public/ui-debugger/components/sidebar/inspector/AttributesInspector.tsx @@ -210,13 +210,13 @@ type Props = { node: UINode; metadata: Map; mode: InspectorMode; - rawDisplayEnabled?: boolean; + rawEnabled?: boolean; }; export const AttributesInspector: React.FC = ({ node, metadata, mode, - rawDisplayEnabled = false, + rawEnabled = true, }) => { const keys = Object.keys(node.attributes); const sections = keys @@ -248,7 +248,7 @@ export const AttributesInspector: React.FC = ({ return ( <> {...sections} - {rawDisplayEnabled && ( + {rawEnabled && (