Browse Source

fix(gui-v2): undefined of applyChanges

pull/3129/head
Wing-Kam Wong 2 years ago
parent
commit
b71664d08e
  1. 2
      packages/nc-gui-v2/components/webhook/Editor.vue

2
packages/nc-gui-v2/components/webhook/Editor.vue

@ -339,7 +339,9 @@ async function saveHooks() {
hook.id = res.id hook.id = res.id
} }
if (filterRef.value) {
await filterRef.value.applyChanges(hook.id) await filterRef.value.applyChanges(hook.id)
}
message.success('Webhook details updated successfully') message.success('Webhook details updated successfully')
} catch (e: any) { } catch (e: any) {

Loading…
Cancel
Save