Merge pull request #33526 from nextcloud/fix/duplicate-filter-ids

Fix duplicate ids on apps management page
This commit is contained in:
Louis 2022-08-17 14:20:47 +02:00 committed by GitHub
commit 634ee18d03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -34,7 +34,7 @@ export default {
},
},
mounted() {
this.filterId = 'invertIconApps' + Math.floor((Math.random() * 100)) + new Date().getSeconds() + new Date().getMilliseconds()
this.filterId = 'invertIconApps-' + Math.random().toString(36).substring(2)
},
}
</script>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long