mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #47120 from nextcloud/fix/systemtags
fix(systemtags): Correctly load tagged files in "tags"-files-view
This commit is contained in:
commit
2777cf90e3
3 changed files with 4 additions and 4 deletions
|
|
@ -57,7 +57,7 @@ export const getContents = async (path = '/'): Promise<ContentsWithRoot> => {
|
|||
}
|
||||
}
|
||||
|
||||
const tagId = parseInt(path.split('/', 2)[0])
|
||||
const tagId = parseInt(path.split('/', 2)[1])
|
||||
const tag = tagsCache.find(tag => tag.id === tagId)
|
||||
|
||||
if (!tag) {
|
||||
|
|
|
|||
4
dist/systemtags-init.js
vendored
4
dist/systemtags-init.js
vendored
File diff suppressed because one or more lines are too long
2
dist/systemtags-init.js.map
vendored
2
dist/systemtags-init.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue