Skip to content

Commit

Permalink
Deletes retrieval limit
Browse files Browse the repository at this point in the history
  • Loading branch information
BLR committed Mar 11, 2018
1 parent 87fa98e commit 8920bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Maintained by yours truly ([@billimarie](https://www.github.com/billimarie))

### Removes
- Comments out Legal History, Election sections
- Deletes retrieval limit

## 0.0.6
### New
Expand Down
2 changes: 1 addition & 1 deletion server/publications/attorneys.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Meteor.publish('Attorneys', function( search ) {
check( search, Match.OneOf( String, null, undefined ));

let query = {},
projection = { limit: 10, sort: { name: 1 } };
projection = { sort: { name: 1 } };

if ( search ) {
let regex = new RegExp( search, 'i' );
Expand Down

0 comments on commit 8920bd9

Please sign in to comment.