Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
723bfa70
Commit
723bfa70
authored
Apr 22, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(table panel): fixed issue with string array formating, fixes #4791
parent
45dd9c57
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
CHANGELOG.md
+1
-0
public/app/plugins/panel/table/renderer.ts
+1
-1
No files found.
CHANGELOG.md
View file @
723bfa70
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
*
**Templating**
: Fixed issue with custom all value and escaping, fixes
[
#4736
](
https://github.com/grafana/grafana/issues/4736
)
*
**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
)
*
**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
)
*
**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)
# 3.0.0-beta5 (2016-04-15)
...
...
public/app/plugins/panel/table/renderer.ts
View file @
723bfa70
...
@@ -30,7 +30,7 @@ export class TableRenderer {
...
@@ -30,7 +30,7 @@ export class TableRenderer {
}
}
if
(
_
.
isArray
(
v
))
{
if
(
_
.
isArray
(
v
))
{
v
=
v
.
join
(
',
'
);
v
=
v
.
join
(
',
'
);
}
}
return
v
;
return
v
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment