From 3e480ddc62e0e8f18753b35f031d29b1e7248497 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Mon, 9 Dec 2024 05:28:49 -0800 Subject: [PATCH] Change file names to file 1,2,3.. for now (#1360) --- skyvern-frontend/src/routes/workflows/WorkflowRun.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx index 939722736..fecedcf24 100644 --- a/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx +++ b/skyvern-frontend/src/routes/workflows/WorkflowRun.tsx @@ -635,12 +635,12 @@ function WorkflowRun() {
{fileUrls.length > 0 ? ( - fileUrls.map((url) => { + fileUrls.map((url, index) => { return ( -
+
- {url} + {`File ${index + 1}`}
);