mirror of
https://github.com/nextcloud/server.git
synced 2026-06-15 11:41:20 -04:00
fix(files): Sort list ASC by default
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
50f8d6c129
commit
16ff684073
1 changed files with 1 additions and 1 deletions
|
|
@ -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'
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue