Skip to content

Commit d60e130

Browse files
Merge pull request dotnet-architecture#392 from DylanMunyard/fix_compile_errors
Code clean up to remove solution errors in the Rider IDE
2 parents 9183a45 + a5abf7d commit d60e130

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/Web/WebMVC/Views/Order/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</article>
2323
@if (Model != null && Model.Any())
2424
{
25-
@foreach (var item in Model)
25+
foreach (var item in Model)
2626
{
2727
<article class="esh-orders-items row">
2828
<section class="esh-orders-item col-xs-2">@Html.DisplayFor(modelItem => item.OrderNumber)</section>

src/Web/WebMVC/Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<a asp-area="" asp-controller="Catalog" asp-action="Index">
4040
<img src="~/images/brand.png" />
4141
</a>
42+
</a>
4243
</section>
4344

4445
@await Html.PartialAsync("_LoginPartial")

0 commit comments

Comments
 (0)