fix(editor): Fix various typecheck issues (no-changelog) (#8739)

This commit is contained in:
Alex Grozav
2024-02-26 16:05:12 +02:00
committed by GitHub
parent 09524304e6
commit c0be43bdbe
16 changed files with 91 additions and 74 deletions

View File

@@ -191,7 +191,7 @@ import {
import { nodeBase } from '@/mixins/nodeBase';
import type {
ConnectionTypes,
IExecutionsSummary,
ExecutionSummary,
INodeInputConfiguration,
INodeOutputConfiguration,
INodeTypeDescription,
@@ -494,7 +494,7 @@ export default defineComponent({
return this.data.name;
},
waiting(): string | undefined {
const workflowExecution = this.workflowsStore.getWorkflowExecution as IExecutionsSummary;
const workflowExecution = this.workflowsStore.getWorkflowExecution as ExecutionSummary;
if (workflowExecution?.waitTill) {
const lastNodeExecuted = get(workflowExecution, 'data.resultData.lastNodeExecuted');