Closed whonore closed 4 years ago
https://github.com/newhaven-helpwithcovid/covid-volunteers/blob/39de604110a8d06972f33c5698117a6af5b74d35/app/views/projects/index.html.erb#L113 The project pagination calls paginate before filtering out the invisible ones, so the numbers are off. So we'll get, for example, Showing 1 to 14 of 14 results when there are actually only 13 visible. We should filter the projects first using something like https://github.com/newhaven-helpwithcovid/covid-volunteers/blob/39de604110a8d06972f33c5698117a6af5b74d35/app/controllers/users/registrations_controller.rb#L25.
paginate
Showing 1 to 14 of 14 results
https://github.com/newhaven-helpwithcovid/covid-volunteers/blob/39de604110a8d06972f33c5698117a6af5b74d35/app/views/projects/index.html.erb#L113 The project pagination calls
paginate
before filtering out the invisible ones, so the numbers are off. So we'll get, for example,Showing 1 to 14 of 14 results
when there are actually only 13 visible. We should filter the projects first using something like https://github.com/newhaven-helpwithcovid/covid-volunteers/blob/39de604110a8d06972f33c5698117a6af5b74d35/app/controllers/users/registrations_controller.rb#L25.