Add a results per page option
On the error page, please add a "Results per page" option cause Resolving or hiding 50 pages of errors is not funny at all. Thanks
Good call; you can hide entire types of problem if you don't want to deal with them (in user settings) but yes, a per page option would be good.
I've found a workaround by changing the .per(XXX) option in line 30 into problems_controller.rb
@problems = query.page(page).per(50).order([:category, :problematic_type]).includes(problematic: [:library, :model])
Yep, that's exactly the place, it needs to be a parameter rather than hardcoded. Not sure why I didn't do that by default tbh.
I'm doing a release shortly and managed to squeeze in a simple parameter for this if you don't mind URL-hacking it until I can get the UI in. Just add ?per_page=250 (or whatever) to the end of the problem list URL.
Fantastic, thanks a lot for very quick support.