Browse Source

Merge pull request #5119 from bdwebnet:staging

Fixes Issue #5118 (Bug with load more logs buttons)
Niklas Meyer 2 years ago
parent
commit
ad9dee92be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      data/web/js/site/debug.js

+ 1 - 1
data/web/js/site/debug.js

@@ -1181,7 +1181,7 @@ jQuery(function($){
 
     if (table = $('#' + log_table).DataTable()) {
       var heading = $('#' + log_table).closest('.card').find('.card-header');
-      var load_rows = (table.page.len() + 1) + '-' + (table.page.len() + new_nrows)
+      var load_rows = (table.data().length + 1) + '-' + (table.data().length + new_nrows)
 
       $.get('/api/v1/get/logs/' + log_url + '/' + load_rows).then(function(data){
         if (data.length === undefined) { mailcow_alert_box(lang.no_new_rows, "info"); return; }