Skip to content

Commit

Permalink
fix: check eventOperation is defined or not
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavxc committed Dec 20, 2023
1 parent 0d46883 commit 508a083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nc-gui/components/webhook/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ onMounted(async () => {
})
const isConditionSupport = computed(() => {
return !hookRef.eventOperation.includes('bulk')
return hookRef.eventOperation && !hookRef.eventOperation.includes('bulk')
})
</script>

Expand Down

1 comment on commit 508a083

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR changes have been deployed. Please run the following command to verify:

docker run -d -p 8888:8080 nocodb/nocodb-timely:0.202.10-pr-7246-20231220-0609

Please sign in to comment.