We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9faf99d + 0797a3f commit 7639dacCopy full SHA for 7639dac
src/components/EditorCanvas/Table.jsx
@@ -169,7 +169,7 @@ export default function Table(props) {
169
position="rightTop"
170
showArrow
171
trigger="click"
172
- style={{ width: "200px" }}
+ style={{ width: "200px", wordBreak: "break-word" }}
173
>
174
<Button
175
icon={<IconMore />}
@@ -220,6 +220,14 @@ export default function Table(props) {
220
<strong>Default :</strong>{" "}
221
{e.default === "" ? "Not set" : e.default}
222
</p>
223
+ <p>
224
+ <strong>Comment:</strong>{" "}
225
+ {e.comment === "" ? (
226
+ "No comment"
227
+ ) : (
228
+ <div style={{ maxWidth: "260px", wordBreak: "break-word" }}>{e.comment}</div>
229
+ )}
230
+ </p>
231
</div>
232
}
233
position="right"
0 commit comments