fix undefined error on integrations (#601)

This commit is contained in:
Chirag Chhatrala
2024-10-24 15:32:23 +05:30
committed by GitHub
parent 8a1282f4b0
commit 46359fb127
2 changed files with 4 additions and 4 deletions

View File

@@ -203,7 +203,7 @@ const showIntegrationEventsModal = ref(false)
const loadingDelete = ref(false)
const actionsComponent = computed(() => {
if(integrationTypeInfo.value.actions_file_name) {
if(integrationTypeInfo.value?.actions_file_name || false) {
return resolveComponent(integrationTypeInfo.value.actions_file_name)
}