X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/db14525950d4fe557e0e684932bbc9a2a42547dd..a7bd5fa6c4353745260398eaa61c5b857975d222:/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 5327e8d775..2511ab0818 100644 --- a/apps/workbench/app/controllers/search_controller.rb +++ b/apps/workbench/app/controllers/search_controller.rb @@ -15,13 +15,16 @@ class SearchController < ApplicationController end @objects = search_what.contents(limit: @limit, offset: @offset, - filters: @filters, - include_linked: true) + count: 'none', + last_object_class: params["last_object_class"], + filters: @filters) super end def next_page_href with_params={} super with_params.merge(last_object_class: @objects.last.class.to_s, - filters: @filters.to_json) + project_uuid: params[:project_uuid], + count: 'none', + filters: @filters.to_json) end end