Skip to content

Commit

Permalink
Change file names to file 1,2,3.. for now (#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Dec 9, 2024
1 parent 4a42276 commit 3e480dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skyvern-frontend/src/routes/workflows/WorkflowRun.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -635,12 +635,12 @@ function WorkflowRun() {
</header>
<div className="space-y-2">
{fileUrls.length > 0 ? (
fileUrls.map((url) => {
fileUrls.map((url, index) => {
return (
<div key={url} className="flex gap-2">
<div key={url} title={url} className="flex gap-2">
<FileIcon className="size-6" />
<a href={url} className="underline underline-offset-4">
<span>{url}</span>
<span>{`File ${index + 1}`}</span>
</a>
</div>
);
Expand Down

0 comments on commit 3e480dd

Please sign in to comment.