Skip to content

Commit

Permalink
Merge pull request #132 from hibare/dev
Browse files Browse the repository at this point in the history
Fix auto refresh #129 & #130
  • Loading branch information
hibare authored Dec 25, 2021
2 parents 8f8f057 + 6d0dca4 commit 9228683
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default {
created() {
this.getJobsStatus();
setTimeout(this.getJobsStatus(), 300000);
setInterval(this.getJobsStatus(), 300000);
},
methods: {
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/components/Login.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<template>
<v-container fill-height fluid>
<v-row align="center" justify="center">
<v-col cols="12" sm="12" lg="7" md="12" class=""> left </v-col>
<v-col cols="12" sm="12" lg="7" md="12" class="" align="center">
left
</v-col>
<v-col cols="12" sm="12" lg="5" md="12" align="center" justify="center">
<v-col sm="9" lg="9" md="9">
<v-form
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/jobs/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
created() {
this.getJobs();
setTimeout(this.getJobs(), 300000);
setInterval(this.getJobs(), 300000);
},
methods: {
Expand Down

0 comments on commit 9228683

Please sign in to comment.