fix(files): Sort list ASC by default

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2023-11-15 10:09:16 +01:00
parent 50f8d6c129
commit 16ff684073
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -47,7 +47,7 @@ export default Vue.extend({
*/
isAscSorting(): boolean {
const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction
return sortingDirection === 'asc'
return sortingDirection !== 'desc'
},
},