diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx index 3319c9aaf..6ea4886b0 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx +++ b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx @@ -27,31 +27,35 @@ export function WorkflowActionCard({ return (
-
-

{action.label}

- - {controller.nextStep ? ( +
+
+

{action.label}

+ {status ? ( + + {status} + + ) : null} +
+
- ) : null} - {status ? ( - - {status} - - ) : null} + {controller.nextStep ? ( + + ) : null} +
);