Skip to content

Commit

Permalink
Merge pull request #5581 from h-kataria/do_not_load_search_variables_…
Browse files Browse the repository at this point in the history
…on_pre_provisioning_screen

Do not load advanced search on pre-provisioning screen.
  • Loading branch information
himdel committed May 17, 2019
2 parents b70ff1c + 910eaab commit a5cba35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def set_pre_prov_vars

@report_data_additional_options = ApplicationController::ReportDataAdditionalOptions.from_options(options)
@report_data_additional_options.with_no_checkboxes(true)
@report_data_additional_options.in_a_form(true)

@edit[:template_kls] = get_template_kls
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,9 @@ def with_model(curr_model)
def with_no_checkboxes(no_checkboxes)
self.no_checkboxes = no_checkboxes
end

def in_a_form(in_a_form)
self.in_a_form = in_a_form
end
end
end

0 comments on commit a5cba35

Please sign in to comment.