mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-12 10:25:02 +02:00
Allow any utf-8 char in genre and tags, fix stream manager user undefined
This commit is contained in:
parent
d2a2f3ff6a
commit
e534d015be
6 changed files with 11 additions and 102 deletions
|
@ -75,7 +75,6 @@ export default {
|
|||
}
|
||||
|
||||
return this.items.filter((i) => {
|
||||
// var normie = this.$snakeToNormal(i)
|
||||
var iValue = String(i).toLowerCase()
|
||||
return iValue.includes(this.currentSearch.toLowerCase())
|
||||
})
|
||||
|
@ -170,7 +169,6 @@ export default {
|
|||
})
|
||||
},
|
||||
insertNewItem(item) {
|
||||
// var kebabItem = this.$normalToSnake(item)
|
||||
this.selected.push(item)
|
||||
this.$emit('input', this.selected)
|
||||
this.textInput = null
|
||||
|
@ -183,7 +181,6 @@ export default {
|
|||
if (!this.textInput) return
|
||||
|
||||
var cleaned = this.textInput.toLowerCase().trim()
|
||||
// var cleanedKebab = this.$normalToSnake(cleaned)
|
||||
var matchesItem = this.items.find((i) => {
|
||||
return i === cleaned
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue