1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge branch 'master' into es6-migration

This commit is contained in:
Sarab Singh 2020-05-10 22:13:00 +05:30 committed by GitHub
commit f75e37d358
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
330 changed files with 10587 additions and 13982 deletions

View file

@ -43,6 +43,7 @@
let pct;
if (enableProgressIndicator(item) && item.Type !== "Recording") {
const userData = options && options.userData ? options.userData : item.UserData;
if (userData) {
pct = userData.PlayedPercentage;
if (pct && pct < 100) {
@ -87,7 +88,7 @@
}
if (userData.PlayedPercentage && userData.PlayedPercentage >= 100 || (userData.Played)) {
return '<div class="playedIndicator indicator"><i class="material-icons indicatorIcon">check</i></div>';
return '<div class="playedIndicator indicator"><span class="material-icons indicatorIcon check"></span></div>';
}
}