1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Merge pull request #7863 from Budibase/fix/plugin-websocket

Fix hot reloading component plugins
This commit is contained in:
Andrew Kingston 2022-09-21 13:46:40 +01:00 committed by GitHub
commit 3e51670676
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,6 +129,6 @@ export async function processUploadedPlugin(
}
const doc = await plugins.storePlugin(metadata, directory, source)
ClientAppSocket.emit("plugins-update", { name: doc.name, hash: doc.hash })
ClientAppSocket.emit("plugin-update", { name: doc.name, hash: doc.hash })
return doc
}