Reduce duplication introduced in `issuable_filters_present`
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6497 introduces a issuable_filters_present
helper that checks if any of the parameters used to filter Issuables are present. We then duplicate those keys in the app/views/shared/issuable/_filter.html.haml
view.
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/785 adds an extra layer by also checking for and duplicating the :weight
key.
These keys should be defined in one place and then both of these should just use that. Ideally we can add :weight
to the CE version and have parity between the two.