Skip to content

Commit b434161

Browse files
committed
prepare object (label list) string for correct column width
1 parent 2cc35bf commit b434161

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/output/base.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,9 @@ class base {
237237
if (obj[column] === undefined || obj[column] === null)
238238
return '';
239239

240+
if(typeof obj[column] == 'object') {
241+
return obj[column].toString()
242+
}
240243
return obj[column];
241244
});
242245
}

0 commit comments

Comments
 (0)