Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prepare object (label list) string for correct column width
  • Loading branch information
ndu2 committed Jun 1, 2025
commit b4341614c49d3563d37b575e0104ab20b03b9cdc
3 changes: 3 additions & 0 deletions src/output/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ class base {
if (obj[column] === undefined || obj[column] === null)
return '';

if(typeof obj[column] == 'object') {
return obj[column].toString()
}
return obj[column];
});
}
Expand Down