mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Replace ' ' with '\u00A0'
This commit is contained in:
parent
8197e012a7
commit
ca7e5338bd
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ function getChannelName(item: ItemDto) {
|
||||||
item.ChannelName
|
item.ChannelName
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return { title: item.ChannelName || '' || ' ' };
|
return { title: item.ChannelName || '\u00A0' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue