From 845da88b1dda3d2736e5d3e2ff16eaf23cabfd61 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 27 Jul 2022 16:26:46 +0800 Subject: [PATCH] * Fix bug #25782. --- module/execution/js/kanban.js | 2 +- module/execution/js/taskkanban.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index 50ac5ec859..1f36b660d7 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1813,7 +1813,7 @@ function toggleRDSearchBox() } else { - $(".querybox-toggle").css("color", "3c495c"); + $(".querybox-toggle").css("color", "#3c495c"); $('#rdKanbanSearchInput').attr('value', ''); searchCards(''); } diff --git a/module/execution/js/taskkanban.js b/module/execution/js/taskkanban.js index 9fc36d555f..8614e2e64f 100644 --- a/module/execution/js/taskkanban.js +++ b/module/execution/js/taskkanban.js @@ -1459,7 +1459,7 @@ function toggleSearchBox() } else { - $(".querybox-toggle").css("color", "3c495c"); + $(".querybox-toggle").css("color", "#3c495c"); $('#taskKanbanSearchInput').attr('value', ''); searchCards(''); }