longer query period on jobs

feat/vaults
Tomáš Mládek 2021-02-21 12:30:41 +01:00
parent f9f6d2bca6
commit b0d6b34ecd
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export default defineComponent({
setInterval(async () => {
let request = await fetch("/api/jobs");
this.jobs = await request.json();
}, 1000);
}, 3333);
}
});
</script>