Skip to content

Commit 7d4903f

Browse files
committed
fix show more button visible when toshow = length
1 parent a272a46 commit 7d4903f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/trades.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</div>
8585
</div>
8686
</div>
87-
<button class="p-2" v-if="tradeList.length >= toShow" @click="toShow+=25">
87+
<button class="p-2" v-if="tradeList.length > toShow" @click="toShow+=25">
8888
Show More
8989
</button>
9090
</div>

0 commit comments

Comments
 (0)