You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paginator on index page shows incorrect numeration.
This bug comes from Mongoid#Criteria's count.
User.criteria.limit(1).count returns number of all users.
To make it return 1, we should pass argument true to method count. User.criteria.limit(1).count(true) returns 1
The text was updated successfully, but these errors were encountered:
Paginator on index page shows incorrect numeration.
This bug comes from Mongoid#Criteria's count.
User.criteria.limit(1).count
returns number of all users.To make it return
1
, we should pass argumenttrue
to methodcount
.User.criteria.limit(1).count(true)
returns1
The text was updated successfully, but these errors were encountered: