Skip to content

Commit 7ff5645

Browse files
committed
fix: add rounded corners to Echarts visualization
Added rounded-md class to Echarts container to match the border radius styling of the visualization block.
1 parent 6e4afcb commit 7ff5645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/components/v2Editor/customBlocks/visualizationV2/VisualizationView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ function Echarts(props: EchartsProps) {
458458
pointerEvents: 'none',
459459
}}
460460
/>
461-
{isReady && <div ref={ref} className="w-full h-full" />}
461+
{isReady && <div ref={ref} className="w-full h-full rounded-md overflow-hidden" />}
462462
</>
463463
)
464464
}

0 commit comments

Comments
 (0)