Fix issue with REST bindings not being shown in drawer

This commit is contained in:
Peter Clement 2023-04-04 09:12:15 +01:00
parent 8dc5f87972
commit c571a3f881
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
}