Parcourir la source

fix: use invalid last run (#25911)

tags/1.9.0
zxhlyh il y a 1 mois
Parent
révision
1264e7d4f6
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      web/service/use-workflow.ts

+ 1
- 1
web/service/use-workflow.ts Voir le fichier

@@ -118,7 +118,7 @@ export const useLastRun = (flowType: FlowType, flowId: string, nodeId: string, e
}

export const useInvalidLastRun = (flowType: FlowType, flowId: string, nodeId: string) => {
return useInvalid([NAME_SPACE, flowType, 'last-run', flowId, nodeId])
return useInvalid([...useLastRunKey, flowType, flowId, nodeId])
}

// Rerun workflow or change the version of workflow

Chargement…
Annuler
Enregistrer