Feature: LoadMore in Pins view done

This commit is contained in:
winkidney
2019-11-29 00:16:28 +08:00
committed by Isaac Bythewood
parent 5890a02807
commit c5fc7295a4
4 changed files with 74 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ function fetchPinsForBoard(boardId) {
(resolve, reject) => {
axios.get(url).then(
(resp) => {
resolve({ data: { results: resp.data.pins_detail } });
resolve({ data: { results: resp.data.pins_detail, next: null } });
},
error => reject(error),
);