Browse Source

related with the "Fix test result" issue

pull/12227/head
braim23 4 years ago
parent
commit
6d3b06ba27
  1. 4
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml

4
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml

@ -79,7 +79,7 @@
<i class="fa fa-eye"></i> @L["WiewsWithCount", @Model.Post.ReadCount]
<span class="vs-seperator">|</span>
<i class="fa fa-comment"></i> @L["CommentWithCount", @Model.CommentCount]
<i href="#comment-area-id" class="fa fa-comment"></i> <a href="#comment-area-id">@L["CommentWithCount", @Model.CommentCount]</a>
@if (await Authorization.IsGrantedAsync(BloggingPermissions.Posts.Update))
@ -162,7 +162,7 @@
</abp-column>
</abp-row>
<div class="comment-area">
<div class="comment-area" id="comment-area-id">
@foreach (var commentWithRepliesDto in Model.CommentsWithReplies)
{
<div class="media">

Loading…
Cancel
Save