mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed newsletters limited to 15 items
refs https://github.com/TryGhost/Team/issues/1565 If you had more than 15 newsletters we hit default pagination in the API and Admin didn't show any more.
This commit is contained in:
parent
7ad8f63b22
commit
21fd205073
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ export default class NewsletterManagementComponent extends Component {
|
|||
|
||||
@task
|
||||
*loadNewslettersTask() {
|
||||
const newsletters = yield this.store.query('newsletter', {include: 'count.members,count.posts'});
|
||||
const newsletters = yield this.store.query('newsletter', {include: 'count.members,count.posts', limit: 'all'});
|
||||
|
||||
this.updateFilteredNewsletters();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue