Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
Separate colors for in_progress and canceled tasks
Additional columns in Task Defintions list
  • Loading branch information
peterlau committed Mar 14, 2022
1 parent 4b0f818 commit 1765a28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ui/src/components/diagram/diagram.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,19 @@ $node-text-size: 12px;
&.status_COMPLETED_WITH_ERRORS {
@include nodeColor(#8b5b02, #feeac5);
}
&.status_IN_PROGRESS,
&.status_IN_PROGRESS {
@include nodeColor(#c2920d, #fff5da);
}
&.status_SCHEDULED {
@include nodeColor(#11497a, #cbe2f7);
}
//&.status_CANCELED { @include nodeColor(#26194b, #ded5f8); }
&.status_CANCELED {
@include nodeColor(#26194b, #ded5f8);
}
&.status_FAILED,
&.status_FAILED_WITH_TERMINAL_ERROR,
&.status_TIMED_OUT,
&.status_DF_PARTIAL,
&.status_CANCELED {
&.status_DF_PARTIAL {
@include nodeColor(#7f050b, #f9c6c9);
}
&.status_SKIPPED {
Expand Down
2 changes: 2 additions & 0 deletions ui/src/pages/definitions/Task.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ const columns = [
sortable: false,
searchable: false,
},
{ name: "concurrentExecLimit" },
{ name: "pollTimeoutSeconds" },
];

export default function TaskDefinitions() {
Expand Down

0 comments on commit 1765a28

Please sign in to comment.