X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b2800c21fc219f26066d531b2082dac0d377e7f4..57991d19a58903863194043717b2875417a40fe7:/apps/workbench/app/controllers/search_controller.rb diff --git a/apps/workbench/app/controllers/search_controller.rb b/apps/workbench/app/controllers/search_controller.rb index 6f209a5a9e..447f416aa2 100644 --- a/apps/workbench/app/controllers/search_controller.rb +++ b/apps/workbench/app/controllers/search_controller.rb @@ -15,12 +15,13 @@ class SearchController < ApplicationController end @objects = search_what.contents(limit: @limit, offset: @offset, - filters: @filters, - include_linked: true) + filters: @filters) super end def next_page_href with_params={} - super with_params.merge(last_object_class: @objects.last.class.to_s) + super with_params.merge(last_object_class: @objects.last.class.to_s, + project_uuid: params[:project_uuid], + filters: @filters.to_json) end end