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 99d1204 commit d4f7c71Copy full SHA for d4f7c71
js/app.js
@@ -316,7 +316,7 @@ $(".panel-default .panel-heading").click(function() {
316
317
var matches = /"(.*)":\s*"?(\d*)"?/.exec(line);
318
if(matches && timeClaims.indexOf(matches[1]) !== -1) {
319
- var dateStr = (new Date(parseInt(matches[2]) * 1000)).toString();
+ var dateStr = (new Date(parseInt(matches[2], 10) * 1000)).toString();
320
payloadTooltip.text(dateStr);
321
payloadTooltip.css({
322
left: event.pageX + 'px',
0 commit comments