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 => {