fix(agent-task/shared): make capitalised status names consistent
Signed-off-by: Babak K. Shandiz <babakks@github.com>
This commit is contained in:
parent
661817de50
commit
6927d642f6
1 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ func SessionStateString(state string) string {
|
|||
case "queued":
|
||||
return "Queued"
|
||||
case "in_progress":
|
||||
return "In Progress"
|
||||
return "In progress"
|
||||
case "completed":
|
||||
return "Ready for review"
|
||||
case "failed":
|
||||
|
|
@ -38,9 +38,9 @@ func SessionStateString(state string) string {
|
|||
case "idle":
|
||||
return "Idle"
|
||||
case "waiting_for_user":
|
||||
return "Waiting for User"
|
||||
return "Waiting for user"
|
||||
case "timed_out":
|
||||
return "Timed Out"
|
||||
return "Timed out"
|
||||
case "cancelled":
|
||||
return "Cancelled"
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue