diff --git a/src/components/EditorCanvas/Table.jsx b/src/components/EditorCanvas/Table.jsx index 19d8da1..12b6727 100644 --- a/src/components/EditorCanvas/Table.jsx +++ b/src/components/EditorCanvas/Table.jsx @@ -215,15 +215,17 @@ export default function Table(props) { )}

- Default :{" "} + Default: {e.default === "" ? "Not set" : e.default}

- Comment:{" "} + Comment: {e.comment === "" ? ( - "No comment" + "No comment" ) : ( -

{e.comment}
+
+ {e.comment} +
)}