From 7b2f694939b60b23bf351ff1906c69528506f4f6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 7 May 2013 21:17:41 -0400 Subject: [PATCH] fixed watched indicator for folders --- dashboard-ui/scripts/librarybrowser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 3469e8f61..73840e6d7 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";