mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 14:10:52 -07:00
Fix issue where log messages sometimes wouldn't show.
This commit is contained in:
parent
9b7f529d02
commit
9d5dabca14
1 changed files with 7 additions and 7 deletions
|
@ -7,7 +7,7 @@ from plexpy import helpers
|
||||||
<link rel="stylesheet" href="interfaces/default/css/plexwatch-tables.css">
|
<link rel="stylesheet" href="interfaces/default/css/plexwatch-tables.css">
|
||||||
<link rel="stylesheet" href="interfaces/default/css/dataTables.responsive.css">
|
<link rel="stylesheet" href="interfaces/default/css/dataTables.responsive.css">
|
||||||
<style>
|
<style>
|
||||||
td {word-wrap: break-word}
|
td {word-break: break-all;}
|
||||||
</style>
|
</style>
|
||||||
</%def>
|
</%def>
|
||||||
|
|
||||||
|
@ -47,9 +47,9 @@ from plexpy import helpers
|
||||||
<table class="display" id="log_table" width="100%">
|
<table class="display" id="log_table" width="100%">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th align='left' id="timestamp">Timestamp</th>
|
<th class="min-tablet" align='left' id="timestamp">Timestamp</th>
|
||||||
<th align='left' id="level">Level</th>
|
<th class="desktop" align='left' id="level">Level</th>
|
||||||
<th align='left' id="message">Message</th>
|
<th class="all" align='left' id="message">Message</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -60,9 +60,9 @@ from plexpy import helpers
|
||||||
<table class="display" id="plex_log_table" width="100%">
|
<table class="display" id="plex_log_table" width="100%">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th align='left' id="plex_timestamp">Timestamp</th>
|
<th class="min-tablet" align='left' id="plex_timestamp">Timestamp</th>
|
||||||
<th align='left' id="plex_level">Level</th>
|
<th class="desktop" align='left' id="plex_level">Level</th>
|
||||||
<th align='left' id="plex_message">Message</th>
|
<th class="all" align='left' id="plex_message">Message</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue