From aa8a3e2aab39725d5712ee235a79220ccad787f7 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 04:50:04 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Make=20loadStatus=20asynch?= =?UTF-8?q?ronous=20in=20onMounted=20lifecycle=20method?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/views/GamemasterExplorer.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue index f562dc5..29e1347 100644 --- a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue +++ b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue @@ -250,8 +250,8 @@ watch(selectedFile, () => { }); // Lifecycle -onMounted(() => { - loadStatus(); +onMounted(async () => { + await loadStatus(); });