Skip to content

Commit

Permalink
Merge 8227177 into f52571c
Browse files Browse the repository at this point in the history
  • Loading branch information
hermannsblum committed Sep 1, 2017
2 parents f52571c + 8227177 commit 3cab2d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions sacredboard/static/css/runs.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
color: orange;
}

[sacred-content="status-icon"][sacred-status="TIMEOUT"], .run-interrupted {
color: yellow;
}

.detail-page-box {
overflow: auto;
height: 35eM;
Expand Down
3 changes: 2 additions & 1 deletion sacredboard/static/scripts/runs/viewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ define(["knockout", "runs/filters/queryFilters", "runs/filters/queryFilter", "ru
"run-queued": new QueryFilter("status", "==", "\"QUEUED\""),
"run-failed": new QueryFilter("status", "==", "\"FAILED\""),
"run-interrupted": new QueryFilter("status", "==", "\"INTERRUPTED\""),
"run-dead": new QueryFilter("status", "==", "\"DEAD\"")
"run-dead": new QueryFilter("status", "==", "\"DEAD\""),
"run-timeout": new QueryFilter("status", "==", "\"TIMEOUT\"")
},
/**
* Currently applied status filters.
Expand Down
4 changes: 4 additions & 0 deletions sacredboard/templates/runs.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
type="checkbox"
data-bind="checkedValue: predefinedFilters['run-interrupted'], checked: statusFilters.filters">
Interrupted,
<span class="run-timeout">&block;</span> <input
type="checkbox"
data-bind="checkedValue: predefinedFilters['run-timeout'], checked: statusFilters.filters">
Timeout,
<span class="run-dead">&block;</span> <input type="checkbox"
data-bind="checkedValue: predefinedFilters['run-dead'], checked: statusFilters.filters">
Probably dead,
Expand Down

0 comments on commit 3cab2d5

Please sign in to comment.