Browse Source

Fixed default proximo sort order

Arnaud Vergnet 3 years ago
parent
commit
660bbd856a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/screens/Services/Proximo/ProximoListScreen.js

+ 1
- 1
src/screens/Services/Proximo/ProximoListScreen.js View File

61
 
61
 
62
     constructor(props) {
62
     constructor(props) {
63
         super(props);
63
         super(props);
64
-        this.listData = this.props.route.params['data']['data'];
64
+        this.listData = this.props.route.params['data']['data'].sort(sortName);
65
         this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar'];
65
         this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar'];
66
         this.state = {
66
         this.state = {
67
             currentSearchString: '',
67
             currentSearchString: '',

Loading…
Cancel
Save