Fixed communities showing up more than once in the all communities page

This commit is contained in:
CaramelKat
2021-04-01 23:42:55 -05:00
committed by jay.poff@outlook.com
parent 54bc7a15ec
commit bef0d507bc
3 changed files with 5 additions and 5 deletions

View File

@@ -83,7 +83,7 @@
<div class="input-div choices-inputs do-input-cols">
<div>
3DS Browser Banner
3DS Browser Banner (400px x 220px)
<input type="file" id="CTRbrowserHeader" accept="image/png" name="CTRbrowserHeader">
</div>
<div>

View File

@@ -41,7 +41,7 @@
<table style="margin-top: 30px">
<tbody>
<tr>
<% for(var h = 0; h < 5; h++) { for(var i = 0; i < communities.length; i++) {%>
<% for(var i = 0; i < communities.length; i++) {%>
<td>
<div class="community-list-wrapper" onclick="loadCommunityPage('<%= communities[i].community_id %>')">
<img class="community-list-icon" src="<%= communities[i].browser_icon %>">
@@ -53,7 +53,7 @@
</tr>
<tr>
<% } %>
<% }} %>
<% } %>
</tr>
</tbody>
</table>

View File

@@ -9,7 +9,7 @@
<table style="margin-top: 30px">
<tbody>
<tr>
<% for(var h = 0; h < 5; h++) { for(var i = 0; i < communities.length; i++) {%>
<% for(var i = 0; i < communities.length; i++) {%>
<td>
<div class="community-list-wrapper" onclick="loadCommunityPage('<%= communities[i].community_id %>')">
<img class="community-list-icon" src="<%= communities[i].browser_icon %>">
@@ -21,7 +21,7 @@
</tr>
<tr>
<% } %>
<% }} %>
<% } %>
</tr>
</tbody>
</table>