Browse Source

Add community code changes since migration start

migration/net-5
Miguel Veloso 4 years ago
parent
commit
8da9c84385
4 changed files with 3 additions and 4 deletions
  1. +0
    -2
      src/Services/Ordering/Ordering.BackgroundTasks/Tasks/GracePeriodManagerTask.cs
  2. +1
    -1
      src/Web/WebMVC/Views/Order/Detail.cshtml
  3. +1
    -1
      src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml
  4. +1
    -0
      src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css

+ 0
- 2
src/Services/Ordering/Ordering.BackgroundTasks/Tasks/GracePeriodManagerTask.cs View File

@ -41,8 +41,6 @@ namespace Ordering.BackgroundTasks.Tasks
}
_logger.LogDebug("GracePeriodManagerService background task is stopping.");
await Task.CompletedTask;
}
private void CheckConfirmedGracePeriodOrders()


+ 1
- 1
src/Web/WebMVC/Views/Order/Detail.cshtml View File

@ -84,7 +84,7 @@
<article class="esh-orders_detail-items row">
<section class="esh-orders_detail-item col-9"></section>
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total</section>
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total.ToString("N2")</section>
</article>
</section>
</div>


+ 1
- 1
src/Web/WebMVC/Views/Shared/Components/CartList/Default.cshtml View File

@ -64,7 +64,7 @@
<article class="esh-basket-items row">
<section class="esh-basket-item col-10"></section>
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total()</section>
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total().ToString("N2")</section>
</article>
<article class="esh-basket-items row">


+ 1
- 0
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css View File

@ -37,6 +37,7 @@
right: 0;
top: 2.5rem;
transition: height 0.35s;
z-index: 1;
}
.esh-identity:hover .esh-identity-drop {


Loading…
Cancel
Save