Skip to content

Commit

Permalink
Fix getredash#417: integer columns treated as floats
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed May 7, 2015
1 parent 26fe136 commit 74a5121
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rd_ui/app/scripts/services/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@

_.each(this.query_result.data.columns, function(column) {
if (columnTypes[column.name]) {
column.type = columnTypes[column.name];
if (column.type == null) {
column.type = columnTypes[column.name];
}
}
});

Expand Down

0 comments on commit 74a5121

Please sign in to comment.