mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Align expand history icon
This commit is contained in:
parent
82b567f15f
commit
b84f214030
3 changed files with 5 additions and 5 deletions
|
@ -48,10 +48,11 @@ history_table_options = {
|
|||
$(td).html('Currently watching...');
|
||||
} else if (rowData['group_count'] > 1) {
|
||||
date = moment(cellData, "X").format(date_format);
|
||||
expand_history = '<span class="expand-history-tooltip" data-toggle="tooltip" title="Show Detailed History"><i class="fa fa-info-circle fa-fw"></i></span>';
|
||||
expand_history = '<span class="expand-history-tooltip" data-toggle="tooltip" title="Show Detailed History"><i class="fa fa-plus-circle fa-fw"></i></span>';
|
||||
$(td).html('<div><a href="#"><div style="float: left;">' + expand_history + ' ' + date + '</div></a></div>');
|
||||
} else {
|
||||
$(td).html(moment(cellData, "X").format(date_format));
|
||||
date = moment(cellData, "X").format(date_format);
|
||||
$(td).html('<div><a href="#"><div style="float: left;"><i class="fa fa-fw"></i> ' + date + '</div></a></div>');
|
||||
}
|
||||
},
|
||||
"searchable": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue