Skip to content

Commit 84c88db

Browse files
committed
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.
1 parent b70aa51 commit 84c88db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dashboard/src/views/PlatformPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
:config_data="config_data"
172172
:updating-mode="updatingMode"
173173
:updating-platform-config="updatingPlatformConfig"
174-
@update="getConfig"
174+
@update:show="getConfig"
175175
@show-toast="showToast"
176176
@refresh-config="getConfig"
177177
/>

0 commit comments

Comments
 (0)