From cac222a39b119535eaa04ae670725a87fd7da3e9 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 04:02:18 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improve=20code=20readability=20b?= =?UTF-8?q?y=20reformatting=20computed=20property=20and=20component=20prop?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/gamemaster/FilterPanel.vue | 4 +++- .../pokedex.online/src/views/GamemasterExplorer.vue | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/code/websites/pokedex.online/src/components/gamemaster/FilterPanel.vue b/code/websites/pokedex.online/src/components/gamemaster/FilterPanel.vue index 1bcd00f..172ba6a 100644 --- a/code/websites/pokedex.online/src/components/gamemaster/FilterPanel.vue +++ b/code/websites/pokedex.online/src/components/gamemaster/FilterPanel.vue @@ -72,7 +72,9 @@ const props = defineProps({ }); const internalFilterState = useJsonFilter(); -const activeFilterState = computed(() => props.filterState || internalFilterState); +const activeFilterState = computed( + () => props.filterState || internalFilterState +); const { filterProperty, diff --git a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue index 875ac61..ed57022 100644 --- a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue +++ b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue @@ -100,7 +100,11 @@ /> - +