mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix wrongly removed replace
This commit is contained in:
parent
eb8ae3ea70
commit
eba46a9576
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ define(["loading", "libraryMenu", "globalize", "cardStyle", "emby-button", "emby
|
||||||
}
|
}
|
||||||
|
|
||||||
function getHeaderText(category) {
|
function getHeaderText(category) {
|
||||||
category = category(" ", "");
|
category = category.replace(" ", "");
|
||||||
if ("Channel" === category) {
|
if ("Channel" === category) {
|
||||||
category = "Channels";
|
category = "Channels";
|
||||||
} else if ("Theme" === category) {
|
} else if ("Theme" === category) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue