Skip to content

Commit

Permalink
Merge pull request #1122 from pi-hole/fix/db_graph_links
Browse files Browse the repository at this point in the history
Fix generated long-term graph links
  • Loading branch information
PromoFaux authored Jan 3, 2020
2 parents 0a16b94 + 81d7d24 commit 7d1e5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pi-hole/js/db_graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ $("#queryOverTimeChart").click(function(evt) {

//get value by index
var from = label / 1000;
var until = label / 1000 + 600;
var until = label / 1000 + interval;
window.location.href = "db_queries.php?from=" + from + "&until=" + until;
}

Expand Down

0 comments on commit 7d1e5eb

Please sign in to comment.