From d0da9e875e0b2214f917f7516d77f6428ff15cc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Mon, 9 Mar 2026 20:54:10 +0800 Subject: [PATCH] Remove orphaned emitter.emit calls with no matching listener Co-Authored-By: Claude Opus 4.6 --- .../Conformance/ConformanceSidebar/ConformanceShowBar.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/components/Discover/Conformance/ConformanceSidebar/ConformanceShowBar.vue b/src/components/Discover/Conformance/ConformanceSidebar/ConformanceShowBar.vue index e47aa46..945eaf9 100644 --- a/src/components/Discover/Conformance/ConformanceSidebar/ConformanceShowBar.vue +++ b/src/components/Discover/Conformance/ConformanceSidebar/ConformanceShowBar.vue @@ -636,10 +636,6 @@ function selectStart(e) { isEndSelected.value = false; task.value = e; taskEnd.value = null; - emitter.emit("sratrAndEndToStart", { - start: true, - end: false, - }); } } /** @@ -653,10 +649,6 @@ function selectEnd(e) { isStartSelected.value = false; task.value = e; taskStart.value = null; - emitter.emit("sratrAndEndToStart", { - start: false, - end: true, - }); } } /**