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.
1 parent f2cbb83 commit d575a48Copy full SHA for d575a48
filebrowser.js
@@ -890,8 +890,10 @@ sidebar.addEventListener('scroll', () => {
890
891
const moreButton = fileWrapper.querySelector('.item.more');
892
893
- // if 'more' button exists
894
- if (moreButton) {
+ // if more button exists
+ // and is not disabled (loading more)
895
+ if (moreButton &&
896
+ !moreButton.classList.contains('disabled')) {
897
898
const maxScroll = sidebar.scrollHeight - sidebar.clientHeight;
899
0 commit comments