Fix issue where log messages sometimes wouldn't show.

This commit is contained in:
Tim 2015-07-05 16:14:22 +02:00
parent 9b7f529d02
commit 9d5dabca14

View file

@ -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>