Skip to content

Commit

Permalink
Merge pull request #3571 from torfsen/3570-view-filters-not-working
Browse files Browse the repository at this point in the history
[#3570] Fix syntax error in resource-view-filters JS module
  • Loading branch information
amercader committed May 23, 2017
2 parents c6f41a9 + 9e4599b commit d4119e9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -6,7 +6,7 @@ this.ckan.module('resource-view-filters', function (jQuery) {
resourceId = self.options.resourceId,
fields = self.options.fields,
dropdownTemplate = self.options.dropdownTemplate,
addFilterTemplate = '<a href="#">' + self._('Add Filter') + '</a>';
addFilterTemplate = '<a href="#">' + self._('Add Filter') + '</a>',
filtersDiv = $('<div></div>');

var filters = ckan.views.filters.get();
Expand Down

0 comments on commit d4119e9

Please sign in to comment.