[TS] Fix event type for executing listener (#3310)

This commit is contained in:
Chenlei Hu
2025-04-02 11:16:36 -04:00
committed by GitHub
parent 8fc6840434
commit 6d09b7165f
3 changed files with 7 additions and 7 deletions

View File

@@ -62,6 +62,7 @@ import { usePaste } from '@/composables/usePaste'
import { useWorkflowPersistence } from '@/composables/useWorkflowPersistence'
import { CORE_SETTINGS } from '@/constants/coreSettings'
import { i18n } from '@/i18n'
import type { NodeId } from '@/schemas/comfyWorkflowSchema'
import { UnauthorizedError, api } from '@/scripts/api'
import { app as comfyApp } from '@/scripts/app'
import { ChangeTracker } from '@/scripts/changeTracker'
@@ -165,7 +166,7 @@ watch(
watch(
() =>
[executionStore.executingNodeId, executionStore.executingNodeProgress] as [
string | null,
NodeId | null,
number | null
],
([executingNodeId, executingNodeProgress]) => {