Skip to content

Commit

Permalink
apply proper value formatting for table format
Browse files Browse the repository at this point in the history
  • Loading branch information
r.khavronenko committed Nov 22, 2017
1 parent d6eabad commit efc3d0a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.2.4 (2017-11-22)

# Fixes
* apply proper value formatting for table format


# 1.2.3 (2017-11-20)

# Fixes
Expand Down
6 changes: 6 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.2.4 (2017-11-22)

# Fixes
* apply proper value formatting for table format


# 1.2.3 (2017-11-20)

# Fixes
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"url": "https://github.com/Vertamedia/clickhouse-grafana"
}
],
"version": "1.2.3"
"version": "1.2.4"
}
}
2 changes: 1 addition & 1 deletion dist/sql_series.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sql_series.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sql_series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class SqlSeries {
_.each(self.series, function (ser) {
var r = [];
_.each(ser, function (v) {
r.push(v)
r.push(self._formatValue(v))
});
rows.push(r)
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vertamedia-clickhouse",
"version": "1.2.3",
"version": "1.2.4",
"description": "ClickHouse datasource for Grafana",
"scripts": {
"build": "grunt",
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"url": "https://github.com/Vertamedia/clickhouse-grafana"
}
],
"version": "1.2.3"
"version": "1.2.4"
}
}
2 changes: 1 addition & 1 deletion src/sql_series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class SqlSeries {
_.each(self.series, function (ser) {
var r = [];
_.each(ser, function (v) {
r.push(v)
r.push(self._formatValue(v))
});
rows.push(r)
});
Expand Down

0 comments on commit efc3d0a

Please sign in to comment.