We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no_reply_topics
1 parent 7917c96 commit 3381097Copy full SHA for 3381097
app/view/sidebar.html
@@ -50,7 +50,9 @@
50
<div class='inner'>
51
<% if (no_reply_topics.length > 0) { %>
52
<ul class="unstyled">
53
- <%- include('./topic/small.html', { topic: no_reply_topics }) %>
+ <% no_reply_topics.forEach(topic => { %>
54
+ <%- include('./topic/small.html', { topic }) %>
55
+ <% }) %>
56
</ul>
57
<% } else { %>
58
<p>无</p>
@@ -69,7 +71,7 @@
69
71
70
72
<% if (tops.length > 0) { %>
73
<ol>
- <% tops.forEach((user) => { %>
74
+ <% tops.forEach(user => { %>
75
<%- include('user/top.html', { user }) %>
76
<% }) %>
77
</ol>
0 commit comments