mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 15:32:38 -07:00
Change friendly name hover title text to username
This commit is contained in:
parent
d9ece291b7
commit
e3eca5af46
10 changed files with 25 additions and 16 deletions
|
@ -118,6 +118,7 @@ class Users(object):
|
|||
|
||||
columns = ['users.id AS row_id',
|
||||
'users.user_id',
|
||||
'users.username',
|
||||
'(CASE WHEN users.friendly_name IS NULL OR TRIM(users.friendly_name) = "" \
|
||||
THEN users.username ELSE users.friendly_name END) AS friendly_name',
|
||||
'users.thumb AS user_thumb',
|
||||
|
@ -193,6 +194,7 @@ class Users(object):
|
|||
|
||||
row = {'row_id': item['row_id'],
|
||||
'user_id': item['user_id'],
|
||||
'username': item['username'],
|
||||
'friendly_name': item['friendly_name'],
|
||||
'user_thumb': user_thumb,
|
||||
'plays': item['plays'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue