mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix for critic rating not showing
This commit is contained in:
parent
a787772df7
commit
89ebf2744e
2 changed files with 10 additions and 7 deletions
|
@ -175,7 +175,6 @@
|
|||
}
|
||||
|
||||
.rottentomatoesicon {
|
||||
margin-left: 1em;
|
||||
display: inline-block;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
|
@ -185,6 +184,10 @@
|
|||
vertical-align: top;
|
||||
}
|
||||
|
||||
.starRating + .rottentomatoesicon {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.fresh {
|
||||
background-image: url(images/fresh.png);
|
||||
}
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
|
||||
html += '<div class="tileName">' + name + '</div>';
|
||||
|
||||
if (item.CommunityRating) {
|
||||
if (item.CommunityRating || item.CriticRating) {
|
||||
html += '<p>' + LibraryBrowser.getRatingHtml(item) + '</p>';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue