From bdbafc18317070530573bd28a2ec5241c793340b Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Fri, 20 Jun 2014 11:40:32 +0100 Subject: [PATCH] Remove limit from ember post API calls ref #3004 - this is unnecessary and causing bugs --- ghost/admin/routes/posts.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ghost/admin/routes/posts.js b/ghost/admin/routes/posts.js index 5f9153ccac..b1943fb18d 100644 --- a/ghost/admin/routes/posts.js +++ b/ghost/admin/routes/posts.js @@ -4,8 +4,7 @@ import AuthenticatedRoute from 'ghost/routes/authenticated'; var paginationSettings = { status: 'all', staticPages: 'all', - page: 1, - limit: 15 + page: 1 }; var PostsRoute = AuthenticatedRoute.extend(styleBody, {