From 84c9040e2a1ddbf8ae75b982e3d1868db34d8ef8 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Tue, 1 Sep 2020 20:22:47 +0200 Subject: [PATCH] bugfix: print pause button reset loading status Signed-off-by: Stefan Dej --- src/store/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/actions.js b/src/store/actions.js index 5e51042d..d16238d2 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -209,11 +209,11 @@ export default { }, respondPrintPause({commit}) { - commit('removeLoading', { name: 'statusPrintCancel' }); + commit('removeLoading', { name: 'statusPrintPause' }); }, respondPrintResume({commit}) { - commit('removeLoading', { name: 'statusPrintCancel' }); + commit('removeLoading', { name: 'statusPrintResume' }); }, respondPrintCancel({commit}) {