Help
So On saveRow Bee will open popup from this function onHandleMetadata or we have to replace onHandleMetadata from our own function ?
contentDialog: {
saveRow: {
handler: function (resolve, reject, args) {
return window.bee.onHandleMetadata(args)
.then((metadata) => {
resolve(metadata)
})
.catch(() => {
reject()
})
}
},