mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
tweaked detail text
This commit is contained in:
parent
7f3cbd761c
commit
65d7cb543b
1 changed files with 2 additions and 2 deletions
|
@ -480,13 +480,13 @@
|
||||||
else html += '<td></td>';
|
else html += '<td></td>';
|
||||||
|
|
||||||
if (stream.Type == "Video") {
|
if (stream.Type == "Video") {
|
||||||
html += '<td>'+ stream.Width +' '+ stream.Height +' ('+ stream.AspectRatio +')</td>';
|
html += '<td>'+ stream.Width +'/'+ stream.Height +' ('+ stream.AspectRatio +')</td>';
|
||||||
}else {
|
}else {
|
||||||
html += '<td></td>';
|
html += '<td></td>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stream.Channels) {
|
if (stream.Channels) {
|
||||||
html += '<td>'+ stream.Channels +'ch '+ stream.SampleRate +'</td>';
|
html += '<td>'+ stream.Channels +'ch '+ stream.SampleRate +' khz</td>';
|
||||||
}else {
|
}else {
|
||||||
html += '<td></td>';
|
html += '<td></td>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue