diff options
| -rw-r--r-- | app/controllers/application_controller.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 8cb5726c4..853c2f715 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -34,7 +34,7 @@ class ApplicationController < ActionController::Base    helper_method :current_organisation    def current_offer_workbench -    current_organisation.workbenches.where(name: "Gestion de l'offre") +    current_organisation.workbenches.find_by_name("Gestion de l'offre")    end    helper_method :current_offer_workbench | 
