Skip to content

Commit

Permalink
Update Products.razor
Browse files Browse the repository at this point in the history
  • Loading branch information
neozhu committed Feb 11, 2022
1 parent d4bf5f8 commit 99d3bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Blazor.Server.UI/Pages/Products/Products.razor
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<MudText>@context.Name</MudText>
<MudText Typo="Typo.body2">@context.Description</MudText>
</MudTd>
<MudTd DataLabel="Price" Style="text-align:right">@context.Price</MudTd>
<MudTd DataLabel="Price" Style="text-align:right">@context.Price.ToString("C2")</MudTd>
<MudTd DataLabel="Unit">@context.Unit</MudTd>
</RowTemplate>
<NoRecordsContent>
Expand Down

0 comments on commit 99d3bab

Please sign in to comment.