diff options
Diffstat (limited to 'app/models/plan.rb')
-rw-r--r-- | app/models/plan.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/plan.rb b/app/models/plan.rb index f3ef04315f8..e16ecb4c629 100644 --- a/app/models/plan.rb +++ b/app/models/plan.rb @@ -14,7 +14,7 @@ class Plan < ApplicationRecord Gitlab::SafeRequestStore.fetch(:plan_default) do # find_by allows us to find object (cheaply) against replica DB # safe_find_or_create_by does stick to primary DB - find_by(name: DEFAULT) || safe_find_or_create_by(name: DEFAULT) + find_by(name: DEFAULT) || safe_find_or_create_by(name: DEFAULT) { |plan| plan.title = DEFAULT.titleize } end end |