Add unresponsive to the order of results at the top
This commit is contained in:
@@ -62,7 +62,8 @@ namespace LeafWeb.Core.DAL
|
|||||||
li.CurrentStatus == LeafInputStatusType.Starting ||
|
li.CurrentStatus == LeafInputStatusType.Starting ||
|
||||||
li.CurrentStatus == LeafInputStatusType.Finishing ||
|
li.CurrentStatus == LeafInputStatusType.Finishing ||
|
||||||
li.CurrentStatus == LeafInputStatusType.Cancelling ||
|
li.CurrentStatus == LeafInputStatusType.Cancelling ||
|
||||||
li.CurrentStatus == LeafInputStatusType.CancelPending)
|
li.CurrentStatus == LeafInputStatusType.CancelPending ||
|
||||||
|
li.CurrentStatus == LeafInputStatusType.Unresponsive)
|
||||||
// then by pending, by priority
|
// then by pending, by priority
|
||||||
.ThenByDescending(li =>
|
.ThenByDescending(li =>
|
||||||
li.CurrentStatus == LeafInputStatusType.Pending
|
li.CurrentStatus == LeafInputStatusType.Pending
|
||||||
|
|||||||
@@ -79,7 +79,8 @@
|
|||||||
<div class="col-sm-12 col-md-8">
|
<div class="col-sm-12 col-md-8">
|
||||||
<nav>
|
<nav>
|
||||||
|
|
||||||
@{ Html.RenderPartial("MainNavigation"); }
|
@{ // ReSharper disable once Mvc.PartialViewNotResolved
|
||||||
|
Html.RenderPartial("MainNavigation"); }
|
||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
@@ -99,7 +100,8 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
@{ Html.RenderPartial("BottomNavigation"); }
|
@{ // ReSharper disable once Mvc.PartialViewNotResolved
|
||||||
|
Html.RenderPartial("BottomNavigation"); }
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user