mirror of
https://github.com/nextcloud/server.git
synced 2026-02-14 08:14:47 -05:00
Merge pull request #41485 from nextcloud/bugfix/noid/sort-asc-by-default
fix(files): Sort list ASC by default
This commit is contained in:
commit
04c3fea7ac
3 changed files with 4 additions and 4 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'
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue