Skip to content

Commit

Permalink
wf-details: make step status label 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 9ff2534 commit 80a3674
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 @@ -11,6 +11,7 @@ Version 0.9.1 (UNRELEASED)
- 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 not automatically refresh the selected job when viewing the related logs, but keeping the user-selected one active.
- 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 @@ -100,7 +100,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 80a3674

Please sign in to comment.