From 84c88db712a8e62a1014c3f049eee2b85f0d793d Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Sat, 28 Mar 2026 15:27:54 +0800 Subject: [PATCH] fix(dashboard): fix extraneous @update event listener in PlatformPage @update was passed to AddNewPlatform but the component only emits update:show, causing Vue warning about unrecognized event. --- dashboard/src/views/PlatformPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/PlatformPage.vue b/dashboard/src/views/PlatformPage.vue index ac17ad641..263efc007 100644 --- a/dashboard/src/views/PlatformPage.vue +++ b/dashboard/src/views/PlatformPage.vue @@ -171,7 +171,7 @@ :config_data="config_data" :updating-mode="updatingMode" :updating-platform-config="updatingPlatformConfig" - @update="getConfig" + @update:show="getConfig" @show-toast="showToast" @refresh-config="getConfig" />