From 2fe45fcdb1febc670bbeed71e350656656b7baaa Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Wed, 6 Jul 2016 12:56:15 -0600 Subject: [PATCH] Now the filter form with search for issues live. Rather than doing it only the first time. After that, everything had to be submitted by pressing Submit. Next is to prevent submit from working since it overrides the existing filters. --- app/assets/javascripts/issuable.js.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/issuable.js.coffee b/app/assets/javascripts/issuable.js.coffee index c71d4ecf5050..4fc72527211e 100644 --- a/app/assets/javascripts/issuable.js.coffee +++ b/app/assets/javascripts/issuable.js.coffee @@ -4,9 +4,9 @@ issuable_created = false unless issuable_created issuable_created = true Issuable.initTemplates() - Issuable.initSearch() Issuable.initChecks() Issuable.initLabelFilterRemove() + Issuable.initSearch() initTemplates: -> Issuable.labelRow = _.template( -- GitLab