Skip to content

Commit

Permalink
Merge pull request #8048 from bellisk/fix-sorting-by-last-modified-in…
Browse files Browse the repository at this point in the history
…-bulk-process-page

Fix Last Modified sort parameter for bulk-process page
  • Loading branch information
amercader committed Mar 5, 2024
2 parents 3b3ac6a + 8af85d3 commit 6905235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/organization/bulk_process.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h3 class="page-heading">
{% set sorting = [
(_('Name Ascending'), 'title_string asc'),
(_('Name Descending'), 'title_string desc'),
(_('Last Modified'), 'data_modified desc') ]
(_('Last Modified'), 'metadata_modified desc') ]
%}
{% snippet 'snippets/search_form.html', form_id='organization-datasets-search-form', type=dataset_type, query=q, count=page.item_count, sorting=sorting, sorting_selected=sort_by_selected, no_title=true, search_class=' ' %}
{% endblock %}
Expand Down

0 comments on commit 6905235

Please sign in to comment.