Skip to content

Commit

Permalink
disable value formatting for tables since it is controlled by panel s…
Browse files Browse the repository at this point in the history
…ettings (#104)
  • Loading branch information
hagen1778 authored Feb 3, 2019
1 parent fcd1330 commit 731768f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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 @@ -33,7 +33,7 @@ export default class SqlSeries {
_.each(self.series, function (ser) {
let r = [];
_.each(ser, function (v) {
r.push(SqlSeries._formatValue(v))
r.push(v)
});
rows.push(r)
});
Expand Down
2 changes: 1 addition & 1 deletion src/sql_series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class SqlSeries {
_.each(self.series, function (ser) {
let r = [];
_.each(ser, function (v) {
r.push(SqlSeries._formatValue(v))
r.push(v)
});
rows.push(r)
});
Expand Down

0 comments on commit 731768f

Please sign in to comment.