Merge pull request #164 from syokenz/fix-categories-sort-compare-function

fix Categories sort compareFunction return to -1 from 0 in Picker component
nolan/hinaloe-test
Etienne Lemay 2018-02-15 10:05:31 -06:00 committed by GitHub
commit 1c1fe761b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ export default class Picker extends React.PureComponent {
return 1
}
return 0
return -1
})
}