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 53d2acb commit 840e9ebCopy full SHA for 840e9eb
source/js/PivotView.js
@@ -801,7 +801,7 @@ PivotView.prototype.renderRawData = function (data) {
801
);
802
803
var formatContent = function (value, element, format) {
804
- if (!isFinite(value)) { // not number, format as string
+ if (typeof(value) === 'string') { // not number, format as string
805
element.className += " formatLeft";
806
element.innerHTML = (value || "").replace(/(https?|ftp):\/\/[^\s]+/ig, function linkReplace (p) {
807
return "<a href='" + p
0 commit comments