From 95bdb7717584944198eea9d1b3bf8ea2e65aac8a Mon Sep 17 00:00:00 2001 From: Alessandro Francia Date: Wed, 19 Sep 2018 11:54:19 +0200 Subject: [PATCH] fix top reps and start stop --- .../src/modules/base-components/cards/card-job-production.vue | 4 ++-- .../modules/base-components/cards/card-queue-production.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Step/wwwroot/src/modules/base-components/cards/card-job-production.vue b/Step/wwwroot/src/modules/base-components/cards/card-job-production.vue index 2b820115..0be0f2f8 100644 --- a/Step/wwwroot/src/modules/base-components/cards/card-job-production.vue +++ b/Step/wwwroot/src/modules/base-components/cards/card-job-production.vue @@ -132,10 +132,10 @@ export default { async stopQueue(){ await new FileService().stopQueue(this.selectedProcess); if(this.queueStatus == 0){ - this.startStopQueue = true; + this.startStopQueue = false; } else{ - this.startStopQueue = false; + this.startStopQueue = true; } } } diff --git a/Step/wwwroot/src/modules/base-components/cards/card-queue-production.vue b/Step/wwwroot/src/modules/base-components/cards/card-queue-production.vue index 34afeeed..599dae41 100644 --- a/Step/wwwroot/src/modules/base-components/cards/card-queue-production.vue +++ b/Step/wwwroot/src/modules/base-components/cards/card-queue-production.vue @@ -151,7 +151,7 @@ export default { positionBoxReps(arg1, reps){ debugger this.numberReps = reps; - this.selectedPositionTop = (arg1.offsetTop + 226); + this.selectedPositionTop = (arg1.offsetTop + 164); this.enablePopup = true; }, selectTab(value){