diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2024-07-09 01:29:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-09 01:29:17 -0700 |
commit | 025a7849b487351d0240d89833b3ab825897097d (patch) | |
tree | e220f98581c181fc0cf1cc593b34b12db7373c76 /apps | |
parent | 6b523e8b09f2adeacff67be7818a90cb9910664d (diff) | |
parent | 088cc32b9791b35d80fc54e8f59f108cc662aea4 (diff) | |
download | nextcloud-server-025a7849b487351d0240d89833b3ab825897097d.tar.gz nextcloud-server-025a7849b487351d0240d89833b3ab825897097d.zip |
Merge pull request #46361 from nextcloud/perf/scroll-user-list
perf(settings): Optimize user list scroll performance
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/src/components/Users/VirtualList.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings/src/components/Users/VirtualList.vue b/apps/settings/src/components/Users/VirtualList.vue index 37e82b3a747..e0674b9c898 100644 --- a/apps/settings/src/components/Users/VirtualList.vue +++ b/apps/settings/src/components/Users/VirtualList.vue @@ -157,6 +157,7 @@ export default Vue.extend({ display: block; overflow: auto; height: 100%; + will-change: scroll-position; &__header, &__footer { |