Skip to content

Commit

Permalink
wf-details: make label for step status less visually prominent
Browse files Browse the repository at this point in the history
Closes reanahub#352.
  • Loading branch information
giuseppe-steduto committed Sep 22, 2023
1 parent 344fe91 commit 11cc607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Version 0.9.1 (UNRELEASED)
- Changes the workflow progress bar to always display it as full for finished workflows.
- Changes the interactive session notification by adding a message stating that the session will be closed after a specified number of days inactivity.
- Changes the workflow-details page to make it possible to scroll through the list of workflow steps in the job logs section.
- Changes the workflow-details page to make the label for the workflow steps status less visually prominent.

Version 0.9.0 (2023-01-19)
--------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function JobLogs({ logs }) {
</div>
{log && (
<div className={styles["step-tags"]}>
<Label color={statusMapping[log.status].color}>
<Label color={statusMapping[log.status].color} basic>
{log.status}
{log.duration && (
<span className={styles["step-duration"]}>
Expand Down

0 comments on commit 11cc607

Please sign in to comment.