mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed watched indicator for folders
This commit is contained in:
parent
869219b997
commit
7b2f694939
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue