Merge pull request #4242 from brunnre8/master
MessageSearchForm: do not focus input if search is closed
This commit is contained in:
commit
8fc7a6c0df
@ -4,7 +4,7 @@
|
|||||||
<input
|
<input
|
||||||
ref="searchInputField"
|
ref="searchInputField"
|
||||||
v-model="searchInput"
|
v-model="searchInput"
|
||||||
type="text"
|
type="search"
|
||||||
name="search"
|
name="search"
|
||||||
class="input"
|
class="input"
|
||||||
placeholder="Search messages…"
|
placeholder="Search messages…"
|
||||||
@ -105,7 +105,7 @@ export default {
|
|||||||
this.searchInput = this.$route.query.q;
|
this.searchInput = this.$route.query.q;
|
||||||
this.searchOpened = this.onSearchPage;
|
this.searchOpened = this.onSearchPage;
|
||||||
|
|
||||||
if (!this.searchInput) {
|
if (!this.searchInput && this.searchOpened) {
|
||||||
this.$refs.searchInputField.focus();
|
this.$refs.searchInputField.focus();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user