From c3d758fda6adc8947b62d20b0b644fa2e674b6da Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 20:51:15 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Improve=20code=20formatting=20by=20?= =?UTF-8?q?removing=20unnecessary=20whitespace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/views/GamemasterExplorer.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue index 96b981e..67a7b29 100644 --- a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue +++ b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue @@ -418,7 +418,7 @@ const handleSearchWorkerMessage = event => { } else if (type === 'complete') { searchResults.value = results; currentResultIndex.value = 0; - + // Update displayLines with match highlighting displayLines.value.forEach(line => (line.hasMatch = false)); results.forEach(lineIndex => { @@ -426,7 +426,7 @@ const handleSearchWorkerMessage = event => { displayLines.value[lineIndex].hasMatch = true; } }); - + operationProgress.value.complete = true; setTimeout(() => { operationProgress.value.active = false;