Update personal_patents_controller.rb

fix style
This commit is contained in:
chiu 2019-08-20 14:16:40 +08:00
parent 7f4e00f991
commit 0d189e77e2
1 changed files with 1 additions and 5 deletions

View File

@ -29,11 +29,7 @@ class PersonalPatentsController < ApplicationController
else
patents_show = patents_temp.select { |value| search_all_words((value.send(params[:selectbox]).to_s rescue ''), params[:keywords]) }
end
page_to_show = if params[:page_no].nil?
1
else
params[:page_no].to_i
end
page_to_show = params[:page_no].nil? ? 1 : params[:page_no].to_i
patents = patents_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count]
patents_total_pages = (patents_show.length / page_data_count.to_f).ceil
else