mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix writing entire list for each page
This commit is contained in:
parent
f838955dc3
commit
2a02441734
1 changed files with 3 additions and 1 deletions
|
|
@ -58,7 +58,9 @@ export class KindList extends PaginatedList {
|
||||||
return this.pages.map( kindPage => {
|
return this.pages.map( kindPage => {
|
||||||
return {
|
return {
|
||||||
path: makeKindFilePath({ kindSlug: this.kindSlug, number: kindPage.number }),
|
path: makeKindFilePath({ kindSlug: this.kindSlug, number: kindPage.number }),
|
||||||
content: this.list
|
content: {
|
||||||
|
items: kindPage.items
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue