Open Thebe01 opened 2 years ago
In :
<div class="order-total @(order.Pizzas.Any() ? "" : "hidden")"> Total: <span class="total-price">@order.GetFormattedTotalPrice()</span> <a href="checkout" class="@(OrderState.Order.Pizzas.Count == 0 ? "btn btn-warning disabled" : "btn btn-warning")"> Order > </a> </div>
Seem to be missing "> after order-total... and the last " in the line should be removed. I believe the first line should read : <div class="order-total">@(order.Pizzas.Any() ? "" : "hidden")>
<div class="order-total">@(order.Pizzas.Any() ? "" : "hidden")>
In :
Seem to be missing "> after order-total... and the last " in the line should be removed. I believe the first line should read :
<div class="order-total">@(order.Pizzas.Any() ? "" : "hidden")>