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,7 +61,7 @@ class ProximoListScreen extends React.Component<Props, State> {
61 61
 
62 62
     constructor(props) {
63 63
         super(props);
64
-        this.listData = this.props.route.params['data']['data'];
64
+        this.listData = this.props.route.params['data']['data'].sort(sortName);
65 65
         this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar'];
66 66
         this.state = {
67 67
             currentSearchString: '',

Loading…
Cancel
Save