Skip to content

Commit

Permalink
Set dashboard refresh frequency to 5 sec
Browse files Browse the repository at this point in the history
  • Loading branch information
denny0223 committed Jul 17, 2024
1 parent e0f49e0 commit 888d633
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -284,15 +284,15 @@ export default {
function () {
this.getProblem();
}.bind(this),
1000
5000
);
} else {
this.mode = "dashboard";
window.setInterval(
function () {
this.getStatus();
}.bind(this),
1000
5000
);
}
},
Expand Down

0 comments on commit 888d633

Please sign in to comment.