mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #2676 from Bnyro/fix-search-enter
fix: enter in search bar doesn't work
This commit is contained in:
commit
c6eec84438
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ export default {
|
||||||
},
|
},
|
||||||
onKeyPress(e) {
|
onKeyPress(e) {
|
||||||
if (e.key === "Enter") {
|
if (e.key === "Enter") {
|
||||||
this.submitSearch();
|
this.submitSearch(e);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onInputFocus() {
|
onInputFocus() {
|
||||||
|
|
Loading…
Reference in a new issue