Skip to content

Commit

Permalink
Fix app auto load (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrykuku authored Nov 28, 2024
1 parent 660dc3f commit 96cc1d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Apps/AppSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ export default {
this.getList();
});
// refresh app list every 5 seconds
// this.ListRefreshTimer = setInterval(() => {
// this.getList();
// }, 5000);
this.ListRefreshTimer = setInterval(() => {
this.getList();
}, 5000);
},
catch: () => {
// retry
Expand Down

0 comments on commit 96cc1d6

Please sign in to comment.