Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fixes #1581: Fixed total decimal place issue and User hover menu disp…
Browse files Browse the repository at this point in the history
…lay/usability issue. (#1582)
  • Loading branch information
hetal-kapadia authored Jan 18, 2021
1 parent 1e2760c commit afb4534
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Web/WebMVC/Views/Order/Detail.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
right: 0;
top: 2.5rem;
transition: height 0.35s;
z-index: 1;
}

.esh-identity:hover .esh-identity-drop {
Expand Down

0 comments on commit afb4534

Please sign in to comment.