mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
Fix ininite scroll [SCI-7160] (#4414)
This commit is contained in:
parent
2407b95e37
commit
95105b86af
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ var ProjectsIndex = (function() {
|
|||
placeholderTemplate: '#projectPlaceholder',
|
||||
endOfListTemplate: '#projectEndOfList',
|
||||
pageSize: pageSize,
|
||||
lastPage: !!data.next_page,
|
||||
lastPage: !data.next_page,
|
||||
customResponse: (response) => {
|
||||
$(response.cards_html).appendTo(cardsWrapper);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue