mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Fix styling and sorting for for recently added items.
This commit is contained in:
parent
9eca41d56f
commit
253a1efb3a
3 changed files with 5 additions and 5 deletions
|
@ -73,7 +73,7 @@
|
|||
|
||||
function recentlyAdded() {
|
||||
var widthVal = $('body').find(".container-fluid").width();
|
||||
var tmp = widthVal / 182;
|
||||
var tmp = (widthVal-20) / 182;
|
||||
|
||||
if (tmp > 0) {
|
||||
containerSize = parseInt(tmp);
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
% elif item['type'] == 'movie':
|
||||
<h3>${item['title']} (${item['year']})</h3>
|
||||
% endif
|
||||
<h4><span id="addedAt-${item['ratingKey']}">${item['addedAt']}</span></h4>
|
||||
<div class="muted" id="addedAt-${item['ratingKey']}">${item['addedAt']}</div>
|
||||
</div>
|
||||
</li>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue