From 6c5ed223c657e945e2f0358d248126b9eeaa7b3f Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 04:27:32 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Reformat=20code=20for=20improved?= =?UTF-8?q?=20readability=20in=20FileSelector=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pokedex.online/src/components/gamemaster/FileSelector.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue b/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue index 6bd5e31..0882ef1 100644 --- a/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue +++ b/code/websites/pokedex.online/src/components/gamemaster/FileSelector.vue @@ -54,7 +54,8 @@ const isLoading = computed(() => activeFilesState.value.isLoading); const fileError = computed(() => activeFilesState.value.fileError); const formatSize = (...args) => activeFilesState.value.formatSize(...args); -const formatFileName = (...args) => activeFilesState.value.formatFileName(...args); +const formatFileName = (...args) => + activeFilesState.value.formatFileName(...args); const getFileType = (...args) => activeFilesState.value.getFileType(...args); const selectedFileMeta = computed(() => {