diff --git a/apps/webapp/app/routes/__app/orgs/$organizationSlug/workflows/$workflowSlug/runs/$runId.tsx b/apps/webapp/app/routes/__app/orgs/$organizationSlug/workflows/$workflowSlug/runs/$runId.tsx
index f6c94ef09..cec669cd4 100644
--- a/apps/webapp/app/routes/__app/orgs/$organizationSlug/workflows/$workflowSlug/runs/$runId.tsx
+++ b/apps/webapp/app/routes/__app/orgs/$organizationSlug/workflows/$workflowSlug/runs/$runId.tsx
@@ -172,7 +172,7 @@ export default function Page() {
);
}
-const workflowNodeFlexClasses = "flex gap-1 items-center";
+const workflowNodeFlexClasses = "flex gap-1 items-baseline";
const workflowNodeUppercaseClasses = "uppercase text-slate-400";
function WorkflowStep({ step }: { step: Step }) {
@@ -192,6 +192,41 @@ function WorkflowStep({ step }: { step: Step }) {
);
}
+function StepHeader({ step }: { step: Step }) {
+ return (
+
+
+ -
+
+ {stepTitle(step)}
+
+ {step.startedAt && (
+ -
+
+ Started:
+
+ {formatDateTime(step.startedAt)}
+
+ )}
+ {step.completedAt && (
+ -
+
+ Completed:
+
+ {formatDateTime(step.completedAt)}
+
+ )}
+
+ {step.type === "trigger" && step.trigger.on === "webhook" ? (
+
+ {step.trigger.integration}
+

+
+ ) : null}
+
+ );
+}
+
function StepBody({ step }: { step: Step }) {
switch (step.type) {
case "trigger":
@@ -270,41 +305,6 @@ function StepError({ step }: { step: Step }) {
);
}
-function StepHeader({ step }: { step: Step }) {
- return (
-
-
- -
-
- {stepTitle(step)}
-
- {step.startedAt && (
- -
-
- Started:
-
- {formatDateTime(step.startedAt)}
-
- )}
- {step.completedAt && (
- -
-
- Completed:
-
- {formatDateTime(step.completedAt)}
-
- )}
-
- {step.type === "trigger" && step.trigger.on === "webhook" ? (
-
- {step.trigger.integration}
-

-
- ) : null}
-
- );
-}
-
function Status({ status }: { status: WorkflowStepStatus }) {
switch (status) {
case "error":