Skip to content

Commit

Permalink
Fixes a string resource issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mgesing committed Jul 15, 2020
1 parent ab89478 commit d98f4c2
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tr>
<th class="display-row">@T("Admin.Customers.Reports.BestBy.Fields.Customer")</th>
<th class="display-row text-center">@T("Account.CustomerOrders")</th>
<th class="display-row text-right" title="@T("Admin.Configuration.Settings.Tax.PricesIncludeTax")">@T("Common.Amount")</th>
<th class="display-row text-right">@T("Common.Amount")</th>
</tr>
</thead>
<tbody>
Expand All @@ -28,7 +28,6 @@
<td class="display-row" title="@x.CustomerDisplayName">
@Html.ActionLink(x.CustomerDisplayName, "Edit", "Customer", new { id = x.CustomerId }, new { })
</td>

<td class="display-row text-center font-weight-medium" title="@x.OrderCount">@x.OrderCount</td>
<td class="display-row text-right" title="@x.OrderTotal">@x.OrderTotal</td>
</tr>
Expand All @@ -44,7 +43,7 @@
<tr>
<th class="display-row">@T("Admin.Customers.Reports.BestBy.Fields.Customer")</th>
<th class="display-row text-center">@T("Account.CustomerOrders")</th>
<th class="display-row text-right" title="@T("Admin.Configuration.Settings.Tax.PricesExcludeTax")">@T("Common.Amount")</th>
<th class="display-row text-right">@T("Common.Amount")</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit d98f4c2

Please sign in to comment.