Skip to content

Commit 4af78be

Browse files
committed
Update filebrowser.js
1 parent edc3d40 commit 4af78be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

filebrowser.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,8 @@ async function renderSidebarHTML(pageNum = 1) {
780780

781781

782782
// if non-eclipsed repositories exist
783-
if (resp.length > 0) {
783+
// and resp length is equal to the max length
784+
if (resp.length > 0 && resp.length === 100) {
784785

785786
// render 'more' button
786787

0 commit comments

Comments
 (0)