cat list: update cat info periodically

This commit is contained in:
Seth Ladygo
2019-05-21 16:52:28 -07:00
parent 2fdb4b6bc7
commit 9f8ca1c7f9

View File

@ -331,6 +331,10 @@ export default {
mounted: function() {
this.loadMyCatalogs()
this.loadPublicCatalogs()
this.interval = setInterval(() => {
this.loadMyCatalogs()
this.loadPublicCatalogs()
}, 10000)
}
}
</script>