mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(systemtags): Correctly load tagged files in "tags"-files-view
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
749dc7d9ae
commit
82f7368e10
1 changed files with 1 additions and 1 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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue