0
Fork 0
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:
Simon Backx 2022-05-03 09:01:41 +02:00
parent 7ad8f63b22
commit 21fd205073

View file

@ -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();