use action.text for input actions in workflow timeline, instead of action.response (#3709)
This commit is contained in:
@@ -87,7 +87,10 @@ function ActionCard({ action, onClick, active, index }: Props) {
|
||||
<>
|
||||
<Separator />
|
||||
<div className="text-xs text-slate-400">
|
||||
Input: {action.response}
|
||||
Input:{" "}
|
||||
{action.action_type === "input_text"
|
||||
? action.text ?? action.response
|
||||
: action.response}
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user