From f6104ba9211446cdf80b4dba20ad35e3137f4b05 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 2 Oct 2018 17:30:08 -0400 Subject: [PATCH] Default category selection for member list is now changed to the first value instead of empty --- footer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/footer.php b/footer.php index 6b2214a..860152f 100644 --- a/footer.php +++ b/footer.php @@ -126,7 +126,7 @@ textSearch.val(""); }); textSearch.on('keydown', function() { - categorySelect.val(0); + categorySelect.val($("#categorySelect option:first").val()); }); }); -- 2.17.1