Merge pull request #10202 from Budibase/fix/rest-bindings-bug

Fix issue with REST bindings not being shown in drawer
This commit is contained in:
Peter Clement 2023-04-14 09:55:24 +01:00 committed by GitHub
commit d0b23d780d
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ export const toBindingsArray = (valueMap, prefix, category) => {
return []
}
return Object.keys(valueMap).reduce((acc, binding) => {
if (!binding || !valueMap[binding]) {
if (!binding) {
return acc
}