Merge pull request #41485 from nextcloud/bugfix/noid/sort-asc-by-default

fix(files): Sort list ASC by default
This commit is contained in:
Joas Schilling 2023-11-16 10:35:15 +01:00 committed by GitHub
commit 04c3fea7ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

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'
},
},

4
dist/files-main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long