mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #45537 from nextcloud/fix/remove-type-import
fix(files): Adjust type import and usage for removed dependency
This commit is contained in:
commit
f0ec5489a4
3 changed files with 5 additions and 6 deletions
|
|
@ -119,7 +119,6 @@
|
|||
import type { View, ContentsWithRoot } from '@nextcloud/files'
|
||||
import type { Upload } from '@nextcloud/upload'
|
||||
import type { CancelablePromise } from 'cancelable-promise'
|
||||
import type { Order } from 'natural-orderby'
|
||||
import type { Route } from 'vue-router'
|
||||
import type { UserConfig } from '../types.ts'
|
||||
|
||||
|
|
@ -302,7 +301,7 @@ export default defineComponent({
|
|||
this.isAscSorting ? 'asc' : 'desc',
|
||||
// for 5: use configured sorting direction
|
||||
this.isAscSorting ? 'asc' : 'desc',
|
||||
] as Order[]
|
||||
] as ('asc'|'desc')[]
|
||||
return [identifiers, orders] as const
|
||||
},
|
||||
|
||||
|
|
|
|||
6
dist/files-main.js
vendored
6
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