From 97e0d08033d4ced401b3e8a9cd2582590e64f347 Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Tue, 14 Nov 2023 10:12:52 +0100 Subject: [PATCH] fix: Small client fix resulting in wrong error messages --- ccc-client/src/components/Progress.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/ccc-client/src/components/Progress.vue b/ccc-client/src/components/Progress.vue index 17f75ec..65cdd4d 100644 --- a/ccc-client/src/components/Progress.vue +++ b/ccc-client/src/components/Progress.vue @@ -129,8 +129,6 @@ export default defineComponent({ this.stepTitle = backendStep.data.title; this.stepDescription = backendStep.data.description; this.currentStep = backendStep.data.currentStep; - let $stepRef = [this.$refs[`${this.currentStep}-step`] as Ref]; - $stepRef[ 0 ].value.scrollIntoView(); this.consoleOutput = this.reformatOutput(backendStep.data.output); const consoleCard = document.getElementById('console'); if (consoleCard) {