From 88ce5fc1bb6403887ae5319690aed58237f6292a Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 13 Feb 2025 00:14:07 +0800 Subject: [PATCH] fix: row value overflow in history table for task run rows (#1764) --- skyvern-frontend/src/routes/history/RunHistory.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/skyvern-frontend/src/routes/history/RunHistory.tsx b/skyvern-frontend/src/routes/history/RunHistory.tsx index 3e05e6ba..c103d75a 100644 --- a/skyvern-frontend/src/routes/history/RunHistory.tsx +++ b/skyvern-frontend/src/routes/history/RunHistory.tsx @@ -95,12 +95,19 @@ function RunHistory() { handleNavigate(event, `/tasks/${run.task_id}/actions`); }} > - {run.task_id} - {run.url} + + {run.task_id} + + + {run.url} + - + {basicLocalTimeFormat(run.created_at)}