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.Finishing ||
|
||||
li.CurrentStatus == LeafInputStatusType.Cancelling ||
|
||||
li.CurrentStatus == LeafInputStatusType.CancelPending)
|
||||
li.CurrentStatus == LeafInputStatusType.CancelPending ||
|
||||
li.CurrentStatus == LeafInputStatusType.Unresponsive)
|
||||
// then by pending, by priority
|
||||
.ThenByDescending(li =>
|
||||
li.CurrentStatus == LeafInputStatusType.Pending
|
||||
|
||||
@@ -79,7 +79,8 @@
|
||||
<div class="col-sm-12 col-md-8">
|
||||
<nav>
|
||||
|
||||
@{ Html.RenderPartial("MainNavigation"); }
|
||||
@{ // ReSharper disable once Mvc.PartialViewNotResolved
|
||||
Html.RenderPartial("MainNavigation"); }
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
@@ -99,7 +100,8 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
@{ Html.RenderPartial("BottomNavigation"); }
|
||||
@{ // ReSharper disable once Mvc.PartialViewNotResolved
|
||||
Html.RenderPartial("BottomNavigation"); }
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user