From 11d5ee5e2d79676e2be88b533ec698b1a4749c32 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Fri, 7 Feb 2025 21:08:00 +0800 Subject: [PATCH] Show url for tasks in history table and change header to detail (#1746) --- .../src/routes/history/RunHistory.tsx | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/skyvern-frontend/src/routes/history/RunHistory.tsx b/skyvern-frontend/src/routes/history/RunHistory.tsx index 4484f92c..cd6a0de1 100644 --- a/skyvern-frontend/src/routes/history/RunHistory.tsx +++ b/skyvern-frontend/src/routes/history/RunHistory.tsx @@ -62,7 +62,7 @@ function RunHistory() { Run ID - Title + Detail Status Created At @@ -97,7 +97,7 @@ function RunHistory() { }} > {run.task_id} - {run.title ?? "Untitled Task"} + {run.url} @@ -118,12 +118,25 @@ function RunHistory() { ); }} > - {run.workflow_run_id} - {run.workflow_title ?? ""} + + {run.workflow_run_id} + + + {run.workflow_title ?? ""} + - + {basicLocalTimeFormat(run.created_at)}