We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b4936 commit eb3445eCopy full SHA for eb3445e
ckanext/dataexplorer/public/vendor/recline/recline.js
@@ -5054,11 +5054,13 @@ this.recline.View = this.recline.View || {};
5054
return where_str;
5055
},
5056
get_field_type: function (value) {
5057
- if (isNaN(Number(value))) {
5058
- return "string";
5059
- } else {
+
+ if (typeof value === "number"){
5060
return "num";
+ } else{
5061
+ return "string";
5062
}
5063
5064
5065
});
5066
})(jQuery, recline.View);
0 commit comments