Metadata
- Source
- SJRK-317
- Type
- Bug
- Priority
- Major
- Status
- Closed
- Resolution
- Fixed
- Assignee
- N/A
- Reporter
- Gregor Moss
- Created
2019-12-11T15:34:48.954-0500 - Updated
2020-04-21T13:00:59.597-0400 - Versions
- N/A
- Fixed Versions
- N/A
- Component
-
- Storytelling Tool Server
Description
The Browse page is currently limited to loading a maximum of 100 stories. This is defined at this line in the code:
limit: "100",
This is a reasonable number for a single page (perhaps even too high), but without pagination it means that we have at the same time far too many stories for one page and also the inability to see anything after the 100th entry, regardless of what's in the database.
To solve this, I propose either implement pagination or removing the limit altogether and deferring a pagination system to another Jira (in that case, please file said issue).
Comments
-
Gregor Moss commented
2020-04-16T12:41:26.671-0400 Quick fix: we can set it to a big number like 500 in the short term
-
Cindy Li commented
2020-04-17T09:37:37.123-0400 The temporary solution that increases the number of stories per page to 500 has been merged into the project repo master branch at this commit.
-
Gregor Moss commented
2020-04-21T11:46:44.545-0400 SJRK-339 has been filed to add pagination