diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 3469e8f619..73840e6d7e 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -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";