We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff9bbe commit 8216f52Copy full SHA for 8216f52
packages/decap-cms-backend-github/src/implementation.tsx
@@ -453,7 +453,7 @@ export default class GitHub implements Implementation {
453
actions.push('first');
454
}
455
if (page < pageCount) {
456
- actions.push('next');
+ actions.push('append_next');
457
actions.push('last');
458
459
@@ -499,7 +499,7 @@ export default class GitHub implements Implementation {
499
const filtered = result.files.filter((file: ApiFile) => filterByExtension(file, extension));
500
501
cursor = Cursor.create({
502
- actions: result.hasMore ? ['next', 'last'] : [],
+ actions: result.hasMore ? ['append_next', 'last'] : [],
503
meta: {
504
page: result.page,
505
count: result.totalCount,
0 commit comments