From 4c4742bc7e571cfac37de96006b47f1e5fb37026 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Thu, 29 Jul 2021 19:49:53 +0200 Subject: [PATCH] bugfix: upload & print button clear loading status after uploading files Signed-off-by: Stefan Dej --- src/components/TheTopbar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TheTopbar.vue b/src/components/TheTopbar.vue index 8f48ca99..a0f19ea7 100644 --- a/src/components/TheTopbar.vue +++ b/src/components/TheTopbar.vue @@ -159,7 +159,7 @@ export default class TheTopbar extends Mixins(BaseMixin) { successFiles.push(result) } - this.$store.dispatch('socket/removeLoading', { name: 'gcodeUpload' }) + this.$store.dispatch('socket/removeLoading', { name: 'btnUploadAndStart' }) for(const file of successFiles) { const text = this.$t("App.TopBar.UploadOfFileSuccessful", {file:file}).toString() this.$toast.success(text)