Merge branch 'main' of https://github.com/ciderapp/Cider
This commit is contained in:
commit
29ae057bc5
1 changed files with 3 additions and 2 deletions
|
@ -319,10 +319,11 @@ const app = new Vue({
|
|||
},
|
||||
async getSearchHints() {
|
||||
if(this.search.term == "") {
|
||||
this.search.hints = ""
|
||||
this.search.hints = []
|
||||
return
|
||||
}
|
||||
let hints = await app.mkapi("searchHints", false, this.search.term)
|
||||
this.search.hints = hints.terms
|
||||
this.search.hints = hints ? hints.terms : []
|
||||
},
|
||||
getSongProgress() {
|
||||
if(this.playerLCD.userInteraction) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue