From 8d4b458a22a1d001f93f4b944da6f64675194dcf Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 17 Feb 2026 13:49:10 +0100 Subject: [PATCH] eventlog: fix date range and empty string search --- dashboard/src/views/EventlogView.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/views/EventlogView.vue b/dashboard/src/views/EventlogView.vue index e49272a32..0dbd07d8c 100644 --- a/dashboard/src/views/EventlogView.vue +++ b/dashboard/src/views/EventlogView.vue @@ -141,7 +141,7 @@ function goToPrevMatch() { } async function goToNextMatch() { - if (searching.value) return; + if (!highlight.value || searching.value) return; if (currentMatchPosition.value + 1 < matchIndices.value.length) { currentMatchPosition.value++; @@ -282,11 +282,11 @@ onUnmounted(() => {
- + - +