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

Merge pull request #8199 from Budibase/bug/sev2/delete-settings-bar

FIX: Delete component from settings bar
This commit is contained in:
melohagan 2022-10-10 13:50:43 +01:00 committed by GitHub
commit a14045e597
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,9 @@ const createBuilderStore = () => {
duplicateComponent: id => {
dispatchEvent("duplicate-component", { id })
},
deleteComponent: id => {
dispatchEvent("delete-component", { id })
},
notifyLoaded: () => {
dispatchEvent("preview-loaded")
},