Merge pull request #47120 from nextcloud/fix/systemtags

fix(systemtags): Correctly load tagged files in "tags"-files-view
fix/make-router-reactive
Andy Scherzinger 2024-08-08 10:00:20 +07:00 committed by GitHub
commit 2777cf90e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long