fix(editor): Add back missing computed prop (no-changelog) (#8306)

This commit is contained in:
Alex Grozav
2024-01-11 16:56:42 +02:00
committed by GitHub
parent 361cda6a7e
commit 1824ff6a13

View File

@@ -706,6 +706,9 @@ export default defineComponent({
) )
); );
}, },
isManualChatOnly(): boolean {
return this.containsChatNodes && this.triggerNodes.length === 1;
},
isExecutionDisabled(): boolean { isExecutionDisabled(): boolean {
return !this.containsTrigger || this.allTriggersDisabled; return !this.containsTrigger || this.allTriggersDisabled;
}, },