From 1d6e1ca196c2c69271525200437de6a1d16b7168 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 04:00:42 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improve=20readability=20by=20ref?= =?UTF-8?q?ormatting=20computed=20property=20definition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pokedex.online/src/components/gamemaster/JsonViewer.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/components/gamemaster/JsonViewer.vue b/code/websites/pokedex.online/src/components/gamemaster/JsonViewer.vue index ef48d7d..b3fc578 100644 --- a/code/websites/pokedex.online/src/components/gamemaster/JsonViewer.vue +++ b/code/websites/pokedex.online/src/components/gamemaster/JsonViewer.vue @@ -129,7 +129,9 @@ const internalSelectionState = useLineSelection( fileContent, selectedFile ); -const activeSelectionState = computed(() => props.selectionState || internalSelectionState); +const activeSelectionState = computed( + () => props.selectionState || internalSelectionState +); const { selectedLines, toggleLineSelection } = activeSelectionState.value; const isCurrentResult = lineNumber => {