mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(table panel): fixed issue with string array formating, fixes #4791
This commit is contained in:
@@ -30,7 +30,7 @@ export class TableRenderer {
|
||||
}
|
||||
|
||||
if (_.isArray(v)) {
|
||||
v = v.join(', ');
|
||||
v = v.join(', ');
|
||||
}
|
||||
|
||||
return v;
|
||||
|
||||
Reference in New Issue
Block a user