Skip to content

Commit cd03dcd

Browse files
authored
Merge pull request #1868 from merico-dev/rich-text-scrollable
fix(viz-rich-text): Fix overflow and height styling
2 parents e85ca3a + dd59ef2 commit cd03dcd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/api",
3-
"version": "14.59.0",
3+
"version": "14.59.1",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/dashboard",
3-
"version": "14.59.0",
3+
"version": "14.59.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"url": "https://github.com/merico-dev/table"

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={{

settings-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/settings-form",
3-
"version": "14.59.0",
3+
"version": "14.59.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"url": "https://github.com/merico-dev/table"

0 commit comments

Comments
 (0)