diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-12-17 08:34:35 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-04-13 10:03:01 +0200 |
commit | de7280114a501eb8568cf4c0a1c85d5561f76648 (patch) | |
tree | 25a599d6a14136da1a0a053f7bebd25f23cb21b2 /core | |
parent | cd95fce105fe5f0e71b1bcac7685464f936b9749 (diff) | |
download | nextcloud-server-de7280114a501eb8568cf4c0a1c85d5561f76648.tar.gz nextcloud-server-de7280114a501eb8568cf4c0a1c85d5561f76648.zip |
Increase debounce timeout to be more realistic with real typing behavior
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/views/UnifiedSearch.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/views/UnifiedSearch.vue b/core/src/views/UnifiedSearch.vue index 6f5745125a8..155f718a9d7 100644 --- a/core/src/views/UnifiedSearch.vue +++ b/core/src/views/UnifiedSearch.vue @@ -483,7 +483,7 @@ export default { }, onInputDebounced: debounce(function(e) { this.onInput(e) - }, 200), + }, 500), /** * Load more results for the provided type |