diff --git a/dashboard/src/components/VolumesView.vue b/dashboard/src/components/VolumesView.vue index f8dfacc2f..4008cf9e8 100644 --- a/dashboard/src/components/VolumesView.vue +++ b/dashboard/src/components/VolumesView.vue @@ -84,7 +84,7 @@

- + @@ -182,6 +182,7 @@ export default { }, data() { return { + busy: true, mountTypeOptions: [ { name: 'CIFS', value: 'cifs' }, { name: 'EXT4', value: 'ext4' }, @@ -210,7 +211,9 @@ export default { }, methods: { async refresh() { + this.busy = true; this.volumes = await volumesModel.list(); + this.busy = false; for (const v of this.volumes) { const status = await volumesModel.getStatus(v.id);