Skip to content

Commit 3800fb9

Browse files
authored
Merge pull request #11 from simvue-io/hotfix/fix-terminated-status
Add missing 'terminated' style
2 parents 66be142 + f6bc927 commit 3800fb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/simvue_cli/cli/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ def simvue_alert(ctx) -> None:
535535
default=20,
536536
show_default=True,
537537
)
538-
@click.option("--path", is_flag=True, help="Show path")
539538
@click.option("--run-tags", is_flag=True, help="Show tags")
540539
@click.option("--auto", is_flag=True, help="Show if run tag auto-assign is enabled")
541540
@click.option("--notification", is_flag=True, help="Show notification setting")

src/simvue_cli/cli/display.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636
"running": "blue",
3737
"failed": "red",
3838
"completed": "green",
39-
"lost": "yellow",
39+
"lost": "orange",
4040
"created": "white",
4141
"N/A": "grey",
42+
"terminated": "red",
4243
}
4344

4445
CLICK_COLORS: dict[str, str] = {

0 commit comments

Comments
 (0)