From 1cc137b9bbc31ab0a6a651ec2329f3553d126584 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 20:33:22 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Improve=20readability=20by=20reform?= =?UTF-8?q?atting=20code=20for=20better=20line=20wrapping?= 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, 3 insertions(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue index b006317..14e42bb 100644 --- a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue +++ b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue @@ -612,7 +612,9 @@ const onSearchInput = debounce(async () => { const matches = lineContent.toLowerCase().includes(searchTerm); // Only update displayLines if it's within the visible range - const displayIndex = displayLines.value.findIndex(l => l.lineNumber === actualIndex + 1); + const displayIndex = displayLines.value.findIndex( + l => l.lineNumber === actualIndex + 1 + ); if (displayIndex !== -1) { displayLines.value[displayIndex].hasMatch = matches; }