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