Skip to content

Commit

Permalink
[#1792] Fix bug where filters weren't persisting
Browse files Browse the repository at this point in the history
The problem was that I mistyped `current_filter` instead of `current_filters`
  • Loading branch information
vitorbaptista committed Jun 30, 2014
1 parent 223e1df commit 43a6fe8
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,5 +1,5 @@
{% set action = 'edit_view' if is_edit else 'resource_read' %}
{% if current_filter %}
{% if current_filters %}
{% set url = h.url_for(controller='package', action=action, id=pkg.name,
resource_id=view.resource_id, view_id=view.id,
filters=current_filters) %}
Expand Down

0 comments on commit 43a6fe8

Please sign in to comment.