Skip to content

Commit

Permalink
fix: load error details
Browse files Browse the repository at this point in the history
  • Loading branch information
Draud-Egomann committed Jun 13, 2024
1 parent 09b87b4 commit 3c46527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Web/Components/Pages/Products/Details.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
@using Microsoft.EntityFrameworkCore
@using Web.Services

<PageTitle>@Product.Name</PageTitle>

@if (!string.IsNullOrWhiteSpace(ErrorMessage)) {
<div class="alert alert-danger" role="alert">
Expand All @@ -16,6 +15,7 @@
} else if (IsLoading) {
<LoadingSkeleton />
} else {
<PageTitle>@Product.Name</PageTitle>
<div class="container p-0">
<div class="row">
<div class="col-md-6">
Expand Down

0 comments on commit 3c46527

Please sign in to comment.