Browse Source
Merge pull request #451 from colinin/5.0.0
fix(oss): file lists do not pass separators
pull/474/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
apps/vue/src/views/oss-management/objects/hooks/useObjects.ts
|
|
|
@ -78,7 +78,7 @@ export function useObjects() { |
|
|
|
function beforeFetch(request: any) { |
|
|
|
request.bucket = unref(bucket); |
|
|
|
request.prefix = unref(path); |
|
|
|
request.delimiter = '/'; |
|
|
|
request.delimiter = ''; |
|
|
|
formatPagedRequest(request); |
|
|
|
} |
|
|
|
|
|
|
|
|