release/1.0.8-rc4 #44

Merged
notazof merged 6 commits from release/1.0.8-rc4 into main 2026-08-28 22:52:44 +01:00
Showing only changes of commit 05db88f345 - Show all commits

fixes the 404 on the Details button

Paul Schneider 2026-08-28 20:57:52 +01:00
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

@ -70,7 +70,7 @@
<div class="actiongroup">
@if ((await AuthorizationService.AuthorizeAsync(User, post, new ReadPermission())).Succeeded)
{
<a asp-action="Details" asp-route-id="@((IBlogPost)post).Id" class="btn btn-light">Details</a>
<a asp-action="Details" asp-route-id="@post.Id" class="btn btn-light">Details</a>
}
else
{