mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fixed watched indicator for folders
This commit is contained in:
parent
869219b997
commit
7b2f694939
@ -863,7 +863,7 @@
|
||||
|
||||
if (item.PlayedPercentage) {
|
||||
|
||||
tooltip = Math.round(item.PlayedPercentage) + '% ';
|
||||
tooltip = item.PlayedPercentage.toFixed(1).toString().replace(".0", '') + '% ';
|
||||
|
||||
if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet") {
|
||||
tooltip += "watched";
|
||||
|
Loading…
Reference in New Issue
Block a user