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.
1 parent 6580a40 commit 0797a3fCopy full SHA for 0797a3f
src/components/EditorCanvas/Table.jsx
@@ -223,16 +223,15 @@ export default function Table(props) {
223
<p>
224
<strong>Comment:</strong>{" "}
225
{e.comment === "" ? (
226
- "Not comment"
+ "No comment"
227
) : (
228
- <div>{e.comment}</div>
+ <div style={{ maxWidth: "260px", wordBreak: "break-word" }}>{e.comment}</div>
229
)}
230
</p>
231
</div>
232
}
233
position="right"
234
showArrow
235
- style={{ width: "200px", wordBreak: "break-word" }}
236
>
237
{field(e, i)}
238
</Popover>
0 commit comments