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:
parent
45dd9c5795
commit
723bfa70db
@ -9,6 +9,7 @@
|
||||
* **Templating**: Fixed issue with custom all value and escaping, fixes [#4736](https://github.com/grafana/grafana/issues/4736)
|
||||
* **Dashlist**: Fixed issue dashboard list panel and caching tags, fixes [#4768](https://github.com/grafana/grafana/issues/4768)
|
||||
* **Graph**: Fixed issue with unneeded scrollbar in legend for Firefox, fixes [#4760](https://github.com/grafana/grafana/issues/4760)
|
||||
* **Table panel**: Fixed issue table panel formating string array properties, fixes [#4791](https://github.com/grafana/grafana/issues/4791)
|
||||
|
||||
# 3.0.0-beta5 (2016-04-15)
|
||||
|
||||
|
@ -30,7 +30,7 @@ export class TableRenderer {
|
||||
}
|
||||
|
||||
if (_.isArray(v)) {
|
||||
v = v.join(', ');
|
||||
v = v.join(', ');
|
||||
}
|
||||
|
||||
return v;
|
||||
|
Loading…
Reference in New Issue
Block a user