fix error

This commit is contained in:
邱博亞 2022-03-10 14:14:52 +08:00
parent 34056ca18f
commit a5bc3285c7
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ module Admin::ApplicationFormsHelper
pages.each do |page|
if page.categories.count ==1
if page.categories.include?(application_form.category.id.to_s) rescue false
if (page.categories.include?(application_form.category.id.to_s) rescue false)
ann_page = page
end
end
@ -19,7 +19,7 @@ module Admin::ApplicationFormsHelper
if ann_page.nil?
pages.each do |page|
if page.categories.include?(application_form.category.id.to_s) rescue false
if (page.categories.include?(application_form.category.id.to_s) rescue false)
ann_page = page
end
break if !ann_page.nil?