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.
This commit is contained in:
LIghtJUNction
2026-03-28 15:27:54 +08:00
parent b70aa517c8
commit 84c88db712

View File

@@ -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"
/>