fix: Table panel now renders annotations correctly. Fixes #9842 (#9868)

This commit is contained in:
Marcus Efraimsson
2017-11-13 15:18:39 +01:00
committed by Torkel Ödegaard
parent ac8b20a60c
commit ecbe7d06a6
4 changed files with 16 additions and 4 deletions

View File

@@ -104,7 +104,7 @@ export class TableRenderer {
return '-';
}
if (_.isString(v)) {
if (_.isString(v) || _.isArray(v)) {
return this.defaultCellFormatter(v, column.style);
}