diff --git a/client/src/components/Workflow/Editor/NodeInvocationText.vue b/client/src/components/Workflow/Editor/NodeInvocationText.vue index acc3dd31f555..e9e92f2a7b9c 100644 --- a/client/src/components/Workflow/Editor/NodeInvocationText.vue +++ b/client/src/components/Workflow/Editor/NodeInvocationText.vue @@ -2,16 +2,11 @@ import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; import { isWorkflowInput } from "@/components/Workflow/constants"; -import { type GraphStep, iconClasses } from "@/composables/useInvocationGraph"; +import { type GraphStep, iconClasses, statePlaceholders } from "@/composables/useInvocationGraph"; const props = defineProps<{ invocationStep: GraphStep; }>(); - -const statePlaceholders: Record = { - ok: "successful", - error: "failed", -};