diff --git a/app/controllers/new_gestionnaire/recherche_controller.rb b/app/controllers/new_gestionnaire/recherche_controller.rb index 243e0d55b..4073b32c8 100644 --- a/app/controllers/new_gestionnaire/recherche_controller.rb +++ b/app/controllers/new_gestionnaire/recherche_controller.rb @@ -8,7 +8,9 @@ module NewGestionnaire @dossiers = current_gestionnaire.dossiers.where(id: @search_terms.to_i) end - @dossiers = Dossier.none if @dossiers.nil? + if @dossiers.nil? + @dossiers = Dossier.none + end # full text search if @dossiers.empty?