Skip to content

Commit

Permalink
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/…
Browse files Browse the repository at this point in the history
…src/'

<!-- ELLIPSIS_HIDDEN -->

> [!IMPORTANT]
> Renames file URLs to `File 1`, `File 2`, etc., in `WorkflowRun.tsx` for improved UI clarity.
>
>   - **UI Changes**:
>     - In `WorkflowRun.tsx`, file URLs are now displayed as `File 1`, `File 2`, etc., instead of the full URL.
>     - Adds `title` attribute to the file link div to retain the full URL for hover display.
>
> <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for bfa98d83caa143e1fb46f11cabef0bee118c127c. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Dec 9, 2024
1 parent 4a42276 commit 1b6ef42
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 1b6ef42

Please sign in to comment.