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]
> Ensure `WorkflowRunTimeline` maintains full height by setting `h-[37rem]` in `ScrollAreaViewport` class.
>
>   - **Behavior**:
>     - Modify `ScrollAreaViewport` class in `WorkflowRunTimeline.tsx` to set `h-[37rem]` alongside `max-h-[37rem]` to ensure full height even when empty.
>   - **Files Affected**:
>     - `WorkflowRunTimeline.tsx` in `eval/routes/workflows/` and `src/routes/workflows/workflowRun/`.
>
> <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 f35ca31b74c568ee2406b676339bbebe3cb8995b. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Feb 4, 2025
1 parent bbdd900 commit 0441eed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function WorkflowRunTimeline({
</div>
</div>
<ScrollArea>
<ScrollAreaViewport className="max-h-[37rem]">
<ScrollAreaViewport className="h-[37rem] max-h-[37rem]">
<div className="space-y-4">
{workflowRunIsNotFinalized && (
<div
Expand Down

0 comments on commit 0441eed

Please sign in to comment.