Changed default sort order

This commit is contained in:
keplyx 2020-03-12 12:31:02 +01:00
parent 2c99d2bb62
commit 4c6905a5d5
2 changed files with 3 additions and 3 deletions

View file

@ -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,
};

View file

@ -31,7 +31,7 @@ export default class AsyncStorageManager {
},
updateNumber: {
key: 'updateNumber',
default: '1',
default: '0',
current: '',
},
proxiwashNotifications: {