Merge branch 'fix/209/unset-category'

This commit is contained in:
xteve-project
2021-01-21 19:38:45 +01:00

View File

@@ -1568,7 +1568,7 @@ function openPopUp(dataType, element) {
// Erweitern der EPG Kategorie // Erweitern der EPG Kategorie
var dbKey:string = "x-category" var dbKey:string = "x-category"
var text:string[] = ["-", "Kids (Emby only)", "News", "Movie", "Series", "Sports"] var text:string[] = ["-", "Kids (Emby only)", "News", "Movie", "Series", "Sports"]
var values:string[] = ["-", "Kids", "News", "Movie", "Series", "Sports"] var values:string[] = ["", "Kids", "News", "Movie", "Series", "Sports"]
var select = content.createSelect(text, values, data[dbKey], dbKey) var select = content.createSelect(text, values, data[dbKey], dbKey)
select.setAttribute("onchange", "javascript: this.className = 'changed'") select.setAttribute("onchange", "javascript: this.className = 'changed'")
content.appendRow("{{.mapping.epgCategory.title}}", select) content.appendRow("{{.mapping.epgCategory.title}}", select)