Skip to content

Commit ae355cd

Browse files
committed
fix(viz-rich-text): Fix overflow and height styling
1 parent e85ca3a commit ae355cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/src/components/plugins/viz-components/rich-text/viz-rich-text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const VizRichText = observer(({ context, instance }: VizViewProps) => {
7575
}
7676

7777
return (
78-
<div onClick={handleClick}>
78+
<div onClick={handleClick} style={{ height: '100%', overflow: 'auto' }}>
7979
<ReadonlyRichText
8080
value={content}
8181
styles={{

0 commit comments

Comments
 (0)