mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Fixed #201
This commit is contained in:
parent
7ec76874bb
commit
a2decbeb3f
1 changed files with 5 additions and 2 deletions
|
@ -41,7 +41,7 @@
|
|||
<button id="clearLogs" type="submit" class="btn btn-danger-outline ">Clear Logs</button>
|
||||
</form>
|
||||
|
||||
<table id="example" class="table table-striped table-hover table-responsive">
|
||||
<table id="logDatatable" class="table table-striped table-hover table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Message</th>
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
var logsUrl = "/admin/loadlogs";
|
||||
var url = createBaseUrl(baseUrl, logsUrl);
|
||||
$('#example').DataTable({
|
||||
$('#logDatatable').DataTable({
|
||||
"ajax": url,
|
||||
"columns": [
|
||||
{ "data": "message" },
|
||||
|
@ -147,5 +147,8 @@
|
|||
});
|
||||
|
||||
|
||||
$('body .dropdown-toggle').dropdown();
|
||||
|
||||
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue