Skip to content

Commit

Permalink
feat: 补上了赞和评论的字符
Browse files Browse the repository at this point in the history
  • Loading branch information
sd0ric4 committed Jan 29, 2023
1 parent 1a5f214 commit d1131b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"x-generation-date": "2023-01-29T12:28:39.928Z"
"x-generation-date": "2023-01-29T14:18:54.098Z"
},
"x-strapi-config": {
"path": "/documentation",
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/Aside/ArticleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ const { data: ArticleList } = await useFetch(`/api/articles/tags?tags=${JSON.str
</div>
<div class="entry-meta-box">
<div class="entry-meta">
{{ item.liked }}
{{ item.liked }}{{ item.liked > 1 ? '' : '' }}
</div>
<div class="entry-meta">
&nbsp;·&nbsp;
</div>
<div class="entry-meta">
{{ item.commented }}
{{ item.commented }}{{ item.commented > 1 ? '评论' : '评论' }}
</div>
</div>
</nuxt-link>
Expand Down

0 comments on commit d1131b4

Please sign in to comment.