Parse custom step parameter correctly. (#2861)

Fixes #2827.
This commit is contained in:
Alexey Palazhchenko 2017-06-19 19:22:59 +03:00 committed by Brian Brazil
parent f46a8e9ea4
commit 6a767b736b
2 changed files with 41 additions and 41 deletions

File diff suppressed because one or more lines are too long

View file

@ -364,7 +364,7 @@ Prometheus.Graph.prototype.submitQuery = function() {
var startTime = new Date().getTime();
var rangeSeconds = self.parseDuration(self.rangeInput.val());
var resolution = self.queryForm.find("input[name=step_input]").val() || Math.max(Math.floor(rangeSeconds / 250), 1);
var resolution = parseInt(self.queryForm.find("input[name=step_input]").val()) || Math.max(Math.floor(rangeSeconds / 250), 1);
var endDate = self.getEndDate() / 1000;
if (self.queryXhr) {