Skip to content

Commit

Permalink
BUG: Fix link to monitor bot page
Browse files Browse the repository at this point in the history
fixes #157
  • Loading branch information
Sebastian Wagner committed Jun 1, 2018
1 parent 771947b commit 9ac3df2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CHANGELOG
#### Management

#### Monitor
* Fix link to monitor page (#157).

#### Check

Expand Down
2 changes: 1 addition & 1 deletion intelmq-manager/js/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function redraw_queues() {
cell0.innerHTML = dst_queues[index][0];
cell0.addEventListener("click", function (event) {
var selectedBot = dst_queues[$(event.target).closest('tr').index()]["parent"];
window.location.href = "monitor.html?bot_id=" + selectedBot;
window.location.href = "?page=monitor&bot_id=" + selectedBot;
});

var cell1 = destination_queue.insertCell(1);
Expand Down

0 comments on commit 9ac3df2

Please sign in to comment.