From 689dd4aebfd77652a2f37ac26393453169402cf7 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 13 Oct 2015 09:27:39 +0200 Subject: [PATCH] Fix event filtering When changing dates window while the search input isn't empty --- public/js/vroom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/vroom.js b/public/js/vroom.js index ca54883..6ff7b6d 100644 --- a/public/js/vroom.js +++ b/public/js/vroom.js @@ -809,7 +809,7 @@ function initAdminAudit(){ function(data){ eventList = data.events; matches = Object.keys(eventList).length; - updateEventList($('#eventSearch').val(), 0, itemPerPage); + updateEventList($('#searchEvent').val(), 0, itemPerPage); updatePagination(); } );