Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis <6653109+artonge@users.noreply.github.com>2022-08-17 15:20:47 +0300
committerGitHub <noreply@github.com>2022-08-17 15:20:47 +0300
commit634ee18d03fd36369d22a9eca2d88d66a8975c3a (patch)
treed169198277565be86b3d9f2a1020acbb2c049fe4 /apps/settings
parenta2d145734ab0548cb1376a818415d5d1342fe665 (diff)
parentd9f1f5a8acd6939596b0cf3f166c1b0473eccf76 (diff)
Merge pull request #33526 from nextcloud/fix/duplicate-filter-ids
Fix duplicate ids on apps management page
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/components/SvgFilterMixin.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/src/components/SvgFilterMixin.vue b/apps/settings/src/components/SvgFilterMixin.vue
index 228b574f3c4..15713514436 100644
--- a/apps/settings/src/components/SvgFilterMixin.vue
+++ b/apps/settings/src/components/SvgFilterMixin.vue
@@ -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>