From ff570e38e1549ebb6cf755d9cb5a4fcfb76f7784 Mon Sep 17 00:00:00 2001 From: Subliminal Guy <subliminal_kid@posteo.de> Date: Wed, 12 Jun 2024 16:59:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(Form.vue):=20Korrigiere=20di?= =?UTF-8?q?e=20Logik=20f=C3=BCr=20das=20Pausieren=20der=20Lottie-Animation?= =?UTF-8?q?,=20um=20false=20zu=20=C3=BCbergeben,=20anstatt=20true.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Form.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Form.vue b/src/components/Form.vue index 19f08c5..c90f3cf 100644 --- a/src/components/Form.vue +++ b/src/components/Form.vue @@ -9,7 +9,7 @@ import jsonDraft from "../assets/job.json"; function startAnimation() { emit("playLottie", true); - emit("pauseLottie", true); + emit("pauseLottie", false); } function pauseAnimation() { -- GitLab