diff --git a/ChangeLog b/ChangeLog index 96a2994d08..dbb93411d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog - issue #14314 Error when naming a database '0' - issue #14333 Fix NULL as default not shown - issue #14229 Fixes issue with recent table list +- issue #14045 Fix slow performance on DB structure filtering 4.8.2 (2018-06-21) - issue #14370 WHERE 0 causes Fatal error diff --git a/js/functions.js b/js/functions.js index 7d331517f5..968314684d 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4713,7 +4713,7 @@ $(document).on('keyup', '#filterText', function () { }); setTimeout(function(){ $(checkboxes_sel).trigger('change'); - }, 300); + }, 300); $('#filter-rows-count').html(count); }); AJAX.registerOnload('functions.js', function () {