1
0
Fork 0
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:
grafixeyehero 2024-03-09 04:06:32 +03:00
parent 8197e012a7
commit ca7e5338bd

View file

@ -505,7 +505,7 @@ function getChannelName(item: ItemDto) {
item.ChannelName item.ChannelName
); );
} else { } else {
return { title: item.ChannelName || '' || ' ' }; return { title: item.ChannelName || '\u00A0' };
} }
} }