From 82ea39f7c4fea72b2b640852c7f7518dbe79697b Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Wed, 13 Nov 2024 06:11:20 -0800 Subject: [PATCH] Avoid overflow in running workflow sidebar (#1183) --- .../src/routes/workflows/WorkflowRun.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx index 41ad821b..01a73be4 100644 --- a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx +++ b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx @@ -365,7 +365,7 @@ function WorkflowRun() {
{getStream()}
-
+
Current Task
{workflowRunIsLoading || !currentRunningTask ? (
Waiting for a task to start...
@@ -377,7 +377,10 @@ function WorkflowRun() {
- + {currentRunningTask.request.url}
@@ -389,7 +392,10 @@ function WorkflowRun() {
- + {currentRunningTask && timeFormatWithShortDate(currentRunningTask.created_at)}