Commit ac0d09c4 by Torkel Ödegaard

fix(): fixed issue with syncing refresh interval to url

parent 12f1ea71
......@@ -116,9 +116,11 @@ class TimeSrv {
}
// update url
var params = this.$location.search();
params.refresh = interval;
this.$location.search(params);
if (interval) {
var params = this.$location.search();
params.refresh = interval;
this.$location.search(params);
}
}
refreshDashboard() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment