mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Make the history graph more readable
Hovering in the history graph now has formatted number, really useful when you have a lot of jobs processed daily.
This commit is contained in:
parent
1f431cb56d
commit
80d990c591
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ var historyGraph = function() {
|
||||||
|
|
||||||
var hoverDetail = new Rickshaw.Graph.HoverDetail({
|
var hoverDetail = new Rickshaw.Graph.HoverDetail({
|
||||||
graph: graph,
|
graph: graph,
|
||||||
yFormatter: function(y) { return Math.floor(y) },
|
yFormatter: function(y) { return Math.floor(y).numberWithDelimiter() },
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue