diff options
Diffstat (limited to 'iridescence/src/components/BusyBar.vue')
-rw-r--r-- | iridescence/src/components/BusyBar.vue | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/iridescence/src/components/BusyBar.vue b/iridescence/src/components/BusyBar.vue index 721a5fd..a38cefa 100644 --- a/iridescence/src/components/BusyBar.vue +++ b/iridescence/src/components/BusyBar.vue @@ -5,13 +5,6 @@ max="100" v-if="isBusy" ></progress> - <progress - class="progress is-small is-primary" - v-bind:value="progress" - max="100" - v-if="progress < 100" - >{{ progress }}%</progress - > </div> </template> @@ -20,10 +13,7 @@ export default { name: "BusyBar", computed: { isBusy() { - return this.$store.getters.busy; - }, - progress() { - return this.$store.getters.progress; + return this.$store.state.busy; } } }; |