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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@icloud.com>2022-08-24 19:43:22 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-01 16:57:54 +0300
commit3d42b003eb591b1909a0853b017d6e61c9e05199 (patch)
treeda328d7b1ab29a1aa328018e400ff52eb518a77a /src
parentb571db11ae94ce98fbebb5ad46ff805bdd577a43 (diff)
Fix .focus is not a function
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/SearchBox/SearchBox.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/LeftSidebar/SearchBox/SearchBox.vue b/src/components/LeftSidebar/SearchBox/SearchBox.vue
index 9d36b26c7..cb3d11943 100644
--- a/src/components/LeftSidebar/SearchBox/SearchBox.vue
+++ b/src/components/LeftSidebar/SearchBox/SearchBox.vue
@@ -101,7 +101,7 @@ export default {
methods: {
// Focus the input field of the searchbox component.
focusInput() {
- this.$refs.searchConversations.focus()
+ this.$refs.searchConversations.$el.focus()
},
// Focuses the input if the current route is root.
focusInputIfRoot() {