Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blagojabozinovski committed Aug 5, 2024
1 parent e7f7545 commit 876dba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckanext/iaea/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ def suggested_filter_fields_serializer(datapackage, view_dict):


def featured_view_url(pkg):

if featured_view:
featured_view = model.ResourceView.get(pkg['featured_view'])
return toolkit.h.url_for(qualified=True, controller='dataset_resource',
action='view', id=pkg['name'],
resource_id=featured_view.resource_id,
view_id=featured_view.id)
else
else:
return None


Expand Down

0 comments on commit 876dba5

Please sign in to comment.