Skip to content

Commit

Permalink
Web: Make 'Inspected' match 'Ignored' color.
Browse files Browse the repository at this point in the history
Fixes #1198
  • Loading branch information
bdrewery committed Jan 9, 2025
1 parent 284e683 commit 305bb68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/share/poudriere/html/assets/poudriere.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function update_canvas(stats) {
context.stroke();
x += minidraw(x, height, width, context, "#00CC00", queued, built);
x += minidraw(x, height, width, context, "#E00000", queued, failed);
x += minidraw(x, height, width, context, "#DD2255", queued, inspected);
x += minidraw(x, height, width, context, "#FF9900", queued, inspected);
x += minidraw(x, height, width, context, "#FF9900", queued, ignored);
x += minidraw(x, height, width, context, "#228B22", queued, fetched);
x += minidraw(x, height, width, context, "#CC6633", queued, skipped);
Expand Down
2 changes: 1 addition & 1 deletion src/share/poudriere/html/build.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
<th class="text-center table-success">Built</th>
<th class="text-center table-danger">Failed</th>
<th class="text-center table-info">Skipped</th>
<th class="text-center table-primary">Inspected</th>
<th class="text-center table-warning">Inspected</th>
<th class="text-center table-warning">Ignored</th>
<th class="text-center table-primary">Fetched</th>
<th class="text-center">Remaining</th>
Expand Down
2 changes: 1 addition & 1 deletion src/share/poudriere/html/jail.html
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
><span class="d-xl-none">S</span>
</th>
<th
class="table-primary"
class="table-warning"
title="Inspected"
data-toggle="tooltip"
data-container="body"
Expand Down

0 comments on commit 305bb68

Please sign in to comment.