From 105fea4e2e1a6fca4954aa4f9129bc95bb688f6f Mon Sep 17 00:00:00 2001 From: TheWitness Date: Sat, 3 Jun 2023 11:37:42 -0400 Subject: [PATCH] Fixing #5342 - Keyup delay on tree search Increase keyup delay when searching the tree --- CHANGELOG | 1 + lib/html_tree.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index ec3129b1a2..286fbdbfe2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/lib/html_tree.php b/lib/html_tree.php index 30410fe512..283b005108 100644 --- a/lib/html_tree.php +++ b/lib/html_tree.php @@ -318,7 +318,7 @@ function openNodes() { }else { $('#jstree').jstree('search', '', false); } - }, 250); + }, 500); });