fix(table panel): fixed issue with string array formating, fixes #4791

This commit is contained in:
Torkel Ödegaard
2016-04-22 14:46:32 +02:00
parent 45dd9c5795
commit 723bfa70db
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ export class TableRenderer {
}
if (_.isArray(v)) {
v = v.join(', ');
v = v.join(', ');
}
return v;