mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 07:34:38 -05:00
fix a issue :3
This commit is contained in:
parent
32924854b6
commit
6a83a1343e
1 changed files with 5 additions and 1 deletions
|
@ -1294,7 +1294,11 @@ WIP! </a>
|
||||||
<div class="pill-button">
|
<div class="pill-button">
|
||||||
|
|
||||||
<i class="fa-light fa-message-lines"></i>
|
<i class="fa-light fa-message-lines"></i>
|
||||||
<%- inv.commentCount.toLocaleString() %>
|
<% if (!isNaN(inv.commentCount)) { %>
|
||||||
|
<%= inv.commentCount.toLocaleString() %>
|
||||||
|
<% } else { %>
|
||||||
|
0
|
||||||
|
<% } %>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue