diff --git a/src/components/graph/GraphCanvas.vue b/src/components/graph/GraphCanvas.vue
index 1983fc16e6..cf5dfb3fad 100644
--- a/src/components/graph/GraphCanvas.vue
+++ b/src/components/graph/GraphCanvas.vue
@@ -39,18 +39,21 @@
>
Status: {{ canvasStore.canvas ? 'Ready' : 'Not Ready' }}
-Viewport: {{ Math.round(canvasViewport.width) }}x{{ Math.round(canvasViewport.height) }}
++ Status: {{ canvasStore.canvas ? 'Ready' : 'Not Ready' }} +
++ Viewport: {{ Math.round(canvasViewport.width) }}x{{ + Math.round(canvasViewport.height) + }} +
-Offset: ({{ Math.round(canvasStore.canvas.ds.offset[0]) }}, {{ Math.round(canvasStore.canvas.ds.offset[1]) }})
-Scale: {{ canvasStore.canvas.ds.scale?.toFixed(3) || 1 }}
++ Offset: ({{ Math.round(canvasStore.canvas.ds.offset[0]) }}, + {{ Math.round(canvasStore.canvas.ds.offset[1]) }}) +
++ Scale: {{ canvasStore.canvas.ds.scale?.toFixed(3) || 1 }} +
Total Nodes: {{ comfyApp.graph?.nodes?.length || 0 }}
-Selected Nodes: {{ canvasStore.canvas?.selectedItems?.size || 0 }}
++ Total Nodes: {{ comfyApp.graph?.nodes?.length || 0 }} +
++ Selected Nodes: {{ canvasStore.canvas?.selectedItems?.size || 0 }} +
Vue Nodes Rendered: {{ vueNodesCount }}
Nodes in Viewport: {{ nodesInViewport }}
-Culled Nodes: {{ performanceMetrics.culledCount }}
-Cull Percentage: {{ Math.round(((vueNodesCount - nodesInViewport) / Math.max(vueNodesCount, 1)) * 100) }}%
++ Culled Nodes: {{ performanceMetrics.culledCount }} +
++ Cull Percentage: + {{ + Math.round( + ((vueNodesCount - nodesInViewport) / Math.max(vueNodesCount, 1)) * + 100 + ) + }}% +
FPS: {{ currentFPS }}
-Transform Update: {{ Math.round(lastTransformTime) }}ms
-Lifecycle Update: {{ Math.round(performanceMetrics.updateTime) }}ms
-RAF Active: {{ rafActive ? 'Yes' : 'No' }}
-Adaptive Quality: {{ performanceMetrics.adaptiveQuality ? 'On' : 'Off' }}
+FPS: {{ currentFPS }}
++ Transform Update: {{ Math.round(lastTransformTime) }}ms +
++ Lifecycle Update: {{ Math.round(performanceMetrics.updateTime) }}ms +
++ RAF Active: {{ rafActive ? 'Yes' : 'No' }} +
++ Adaptive Quality: + {{ performanceMetrics.adaptiveQuality ? 'On' : 'Off' }} +
++ Vue Nodes: {{ shouldRenderVueNodes ? 'Enabled' : 'Disabled' }} +
++ Viewport Culling: + {{ isViewportCullingEnabled ? 'Enabled' : 'Disabled' }} +
++ Dev Mode: {{ isDevModeEnabled ? 'Enabled' : 'Disabled' }} +