Skip to content

Commit 515f64d

Browse files
committed
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/src/'
<!-- ELLIPSIS_HIDDEN --> > [!IMPORTANT] > Change `terminated` status badge color from `destructive` to `warning` in `StatusBadge.tsx`. > > - **Behavior**: > - Changes `terminated` status badge color from `destructive` to `warning` in `StatusBadge` component in `StatusBadge.tsx`. > > <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 e7f4e77dcb16dbe31f5855500708df21be05c0df. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
1 parent 9f7ec07 commit 515f64d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎skyvern-frontend/src/components/StatusBadge.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ function StatusBadge({ status }: Props) {
1111
variant = "success";
1212
} else if (
1313
status === "failed" ||
14-
status === "terminated" ||
1514
status === "timed_out" ||
1615
status === "canceled"
1716
) {
1817
variant = "destructive";
19-
} else if (status === "running") {
18+
} else if (status === "running" || status === "terminated") {
2019
variant = "warning";
2120
}
2221

0 commit comments

Comments
 (0)