Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Show matches correctly when useAlternateScoring is true #297

Merged
merged 1 commit into from
May 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/fuzzy-finder-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class FuzzyFinderView {
},
elementForItem: ({filePath, projectRelativePath}) => {
const filterQuery = this.selectListView.getFilterQuery()
const matches = this.alternateScoring ?
const matches = this.useAlternateScoring ?
fuzzaldrinPlus.match(projectRelativePath, filterQuery) :
fuzzaldrin.match(projectRelativePath, filterQuery)

Expand Down