Browse Source
Merge pull request #392 from DylanMunyard/fix_compile_errors
Code clean up to remove solution errors in the Rider IDE
pull/417/head
Cesar De la Torre
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
src/Web/WebMVC/Views/Order/Index.cshtml
-
src/Web/WebMVC/Views/Shared/_Layout.cshtml
|
|
@ -22,7 +22,7 @@ |
|
|
|
</article> |
|
|
|
@if (Model != null && Model.Any()) |
|
|
|
{ |
|
|
|
@foreach (var item in Model) |
|
|
|
foreach (var item in Model) |
|
|
|
{ |
|
|
|
<article class="esh-orders-items row"> |
|
|
|
<section class="esh-orders-item col-xs-2">@Html.DisplayFor(modelItem => item.OrderNumber)</section> |
|
|
|
|
|
@ -39,6 +39,7 @@ |
|
|
|
<a asp-area="" asp-controller="Catalog" asp-action="Index"> |
|
|
|
<img src="~/images/brand.png" /> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
</section> |
|
|
|
|
|
|
|
@await Html.PartialAsync("_LoginPartial") |
|
|
|