diff --git a/site/frontend/src/pages/compare/compile/compile-page.vue b/site/frontend/src/pages/compare/compile/compile-page.vue index 16219d054..c5059c3e0 100644 --- a/site/frontend/src/pages/compare/compile/compile-page.vue +++ b/site/frontend/src/pages/compare/compile/compile-page.vue @@ -193,13 +193,6 @@ function updateFilter(newFilter: CompileBenchmarkFilter) { refreshQuickLinks(); } -// We pass the event target here, because Parcel cannot handle the `as` -// cast directly in the template. -function updateSelfCompareBackend(target: EventTarget) { - const element = target as HTMLInputElement; - updateFilter({...filter.value, selfCompareBackend: element.checked}); -} - /** * When the filter changes, the URL is updated. * After that happens, we want to re-render the quick links component, because @@ -261,20 +254,10 @@ const filteredSummary = computed(() => computeSummary(comparisons.value)); :selected-metric="selector.stat" :metrics="benchmarkInfo.compile_metrics" /> -