diff --git a/ImageBoardServerApp/Shared/Components/Comment.razor b/ImageBoardServerApp/Shared/Components/Comment.razor index d5b30ed..cf6e091 100644 --- a/ImageBoardServerApp/Shared/Components/Comment.razor +++ b/ImageBoardServerApp/Shared/Components/Comment.razor @@ -24,7 +24,7 @@ @if (image != null) { string isActiveClass = isActive ? "active" : ""; - No Image found + No Image found }
@@ -84,11 +84,13 @@
+ [ Report @if (canDel) { } + ]
} diff --git a/ImageBoardServerApp/Shared/Components/Post.razor b/ImageBoardServerApp/Shared/Components/Post.razor index a24a83b..d1bcec1 100644 --- a/ImageBoardServerApp/Shared/Components/Post.razor +++ b/ImageBoardServerApp/Shared/Components/Post.razor @@ -84,6 +84,7 @@
+ [ @if (post.IsSticky) { @@ -100,8 +101,10 @@ { } + ] + [ Report @if (canDel) { @@ -115,6 +118,7 @@ { @post.Comments.Count Comments } + ]
}