Merge pull request #7883 from Budibase/fix/plugin-upload-error

Fix for error when adding a plugin
This commit is contained in:
Peter Clement 2022-09-21 16:35:45 +01:00 committed by GitHub
commit 63596eddd2
1 changed files with 1 additions and 2 deletions

View File

@ -34,8 +34,7 @@ export function createPluginsStore() {
}
let res = await API.createPlugin(pluginData)
let newPlugin = res.plugins[0]
let newPlugin = res.plugin
update(state => {
const currentIdx = state.findIndex(plugin => plugin._id === newPlugin._id)
if (currentIdx >= 0) {