diff --git a/dashboard/src/components/app/Storage.vue b/dashboard/src/components/app/Storage.vue
index 5cd79d02f..fee0c6a1a 100644
--- a/dashboard/src/components/app/Storage.vue
+++ b/dashboard/src/components/app/Storage.vue
@@ -49,7 +49,8 @@ async function onSubmitMove() {
originalVolumeId.value = volumeId.value;
- moveBusy.value = false;
+ // give app refresh some time, ideally we wait for the task
+ setTimeout(() => moveBusy.value = false, 4000);
}
function onMountAdd() {
@@ -161,16 +162,17 @@ onMounted(async () => {