Skip to content

Commit

Permalink
Fix search-ability (#1739)
Browse files Browse the repository at this point in the history
* Would have thought this would need to be in partial but ehh

Post #1730

Auto-merge and brake time.
  • Loading branch information
Martii authored Aug 22, 2020
1 parent db4786c commit c4d400d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/modelQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ exports.parseCommentSearchQuery = parseCommentSearchQuery;

var parseSyncSearchQuery = function (aSyncListQuery, aQuery) {
parseModelListSearchQuery(aSyncListQuery, aQuery, {
partialWordMatchFields: ['target'],
fullWordMatchFields: []
partialWordMatchFields: [],
fullWordMatchFields: ['target']
});
};
exports.parseSyncSearchQuery = parseSyncSearchQuery;
Expand Down

0 comments on commit c4d400d

Please sign in to comment.