Skip to content

Commit

Permalink
#560 Remove the limit from review stage list
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensearle committed Jun 5, 2020
1 parent cc471d3 commit 6127100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/stage/review.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export default {
let firestoreRef = collectionRef
.where('exercise.id', '==', exerciseId)
.where('stage', '==', EXERCISE_STAGE.REVIEW)
.where('active', '==', true)
.limit(100);
.where('active', '==', true);
// .limit(50);

return bindFirestoreRef('records', firestoreRef, { serialize: vuexfireSerialize });
}),
Expand Down

0 comments on commit 6127100

Please sign in to comment.