diff --git a/src/MusicStore/Views/StoreManager/Details.cshtml b/src/MusicStore/Views/StoreManager/Details.cshtml index 767d3e4cdb..21e3155834 100644 --- a/src/MusicStore/Views/StoreManager/Details.cshtml +++ b/src/MusicStore/Views/StoreManager/Details.cshtml @@ -13,7 +13,7 @@
| - @*@Html.NameFor(model => model.Genre.Name)*@ - @Html.NameFor(model => model.FirstOrDefault().Genre.Name) + @Html.DisplayNameFor(model => model.Genre.Name) | - @*@Html.NameFor(model => model.Artist.Name)*@ - @Html.NameFor(model => model.FirstOrDefault().Artist.Name) + @Html.DisplayNameFor(model => model.FirstOrDefault().Artist.Name) | - @*@Html.NameFor(model => model.Title)*@ - @Html.NameFor(model => model.FirstOrDefault().Title) + @Html.DisplayNameFor(model => model.FirstOrDefault().Title) | - @*@Html.NameFor(model => model.Price)*@ - @Html.NameFor(model => model.FirstOrDefault().Price) + @Html.DisplayNameFor(model => model.FirstOrDefault().Price) |
|---|