Skip to content

Commit

Permalink
Fixing #5342 - Keyup delay on tree search
Browse files Browse the repository at this point in the history
Increase keyup delay when searching the tree
  • Loading branch information
TheWitness committed Jun 3, 2023
1 parent 10edc07 commit 105fea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Cacti CHANGELOG
-issue#5323: Cosmetic error in the system utilities - rebuild poller cache - description
-issue#5329: Upon displaying a form with errors, the session error fields variable isn't cleared
-issue#5338: Compatibility changes for Boost under PHP 8.1
-issue#5342: Increase keyup delay when searching the tree
-feature: Upgrade billboard.js to version 3.7.4
-feature: Upgrade d3.js to version 7.8.2

Expand Down
2 changes: 1 addition & 1 deletion lib/html_tree.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function openNodes() {
}else {
$('#jstree').jstree('search', '', false);
}
}, 250);
}, 500);
});

<?php print api_plugin_hook_function('top_graph_jquery_function');?>
Expand Down

0 comments on commit 105fea4

Please sign in to comment.