Merge pull request #794 from automatisch/fix-broken-flow-editor
fix: make type optional for webhook check
This commit is contained in:
@@ -94,7 +94,7 @@ function ChooseAppAndEventSubstep(
|
|||||||
);
|
);
|
||||||
|
|
||||||
const isWebhook =
|
const isWebhook =
|
||||||
isTrigger && (selectedActionOrTrigger as ITrigger).type === 'webhook';
|
isTrigger && (selectedActionOrTrigger as ITrigger)?.type === 'webhook';
|
||||||
|
|
||||||
const { name } = substep;
|
const { name } = substep;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user