X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8b7ed36ff057c4a483f4ee8a1c66929425b366c6..855ba975a64411ec8ed36ddb1a52a46f0b03cb10:/apps/workbench/app/controllers/application_controller.rb?ds=sidebyside diff --git a/apps/workbench/app/controllers/application_controller.rb b/apps/workbench/app/controllers/application_controller.rb index 88ea4b0a61..3270cfb376 100644 --- a/apps/workbench/app/controllers/application_controller.rb +++ b/apps/workbench/app/controllers/application_controller.rb @@ -164,6 +164,7 @@ class ApplicationController < ActionController::Base def find_objects_for_index @objects ||= model_class @objects = @objects.filter(@filters).limit(@limit).offset(@offset) + @objects.fetch_multiple_pages(false) end def render_index @@ -172,9 +173,9 @@ class ApplicationController < ActionController::Base if params[:partial] @next_page_href = next_page_href(partial: params[:partial], filters: @filters.to_json) render json: { - content: render_to_string(partial: "show_#{params[:partial]}", formats: [:html]), - next_page_href: @next_page_href - + content: render_to_string(partial: "show_#{params[:partial]}", + formats: [:html]), + next_page_href: @next_page_href } else render json: @objects @@ -268,7 +269,6 @@ class ApplicationController < ActionController::Base if params[:partial] f.json { find_objects_for_index if !@objects - @objects.fetch_multiple_pages(false) render json: { content: render_to_string(partial: "choose_rows.html", formats: [:html]),