mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Align expand history icon
This commit is contained in:
parent
82b567f15f
commit
b84f214030
3 changed files with 5 additions and 5 deletions
|
@ -59,7 +59,7 @@ class DataFactory(object):
|
|||
'((CASE WHEN view_offset IS NULL THEN 0.1 ELSE view_offset * 1.0 END) / \
|
||||
(CASE WHEN session_history_metadata.duration IS NULL THEN 1.0 ELSE session_history_metadata.duration * 1.0 END) * 100) AS percent_complete',
|
||||
'session_history_media_info.video_decision',
|
||||
'COUNT(*) AS group_count'
|
||||
'COUNT(*) AS group_count',
|
||||
'session_history_media_info.audio_decision',
|
||||
'session_history.user_id as user_id'
|
||||
]
|
||||
|
@ -128,7 +128,7 @@ class DataFactory(object):
|
|||
"thumb": thumb,
|
||||
"video_decision": item["video_decision"],
|
||||
"watched_status": watched_status,
|
||||
"group_count": item["group_count"]
|
||||
"group_count": item["group_count"],
|
||||
"audio_decision": item["audio_decision"],
|
||||
"user_id": item["user_id"]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue