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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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