forked from vergnet/application-amicale
Changed default sort order
This commit is contained in:
parent
2c99d2bb62
commit
4c6905a5d5
2 changed files with 3 additions and 3 deletions
|
@ -63,8 +63,8 @@ class ProximoListScreen extends React.Component<Props, State> {
|
|||
this.originalData = this.props.route.params['data']['data'];
|
||||
this.shouldFocusSearchBar = this.props.route.params['shouldFocusSearchBar'];
|
||||
this.state = {
|
||||
currentlyDisplayedData: this.originalData.sort(sortPrice),
|
||||
currentSortMode: 1,
|
||||
currentlyDisplayedData: this.originalData.sort(sortName),
|
||||
currentSortMode: 3,
|
||||
modalCurrentDisplayItem: null,
|
||||
};
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ export default class AsyncStorageManager {
|
|||
},
|
||||
updateNumber: {
|
||||
key: 'updateNumber',
|
||||
default: '1',
|
||||
default: '0',
|
||||
current: '',
|
||||
},
|
||||
proxiwashNotifications: {
|
||||
|
|
Loading…
Reference in a new issue