feat(procedure.logo): avoid to resize logo to the smallest scale otherwise it gets pixelated
This commit is contained in:
parent
3ea718a3f5
commit
6360ae25b0
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class Procedure < ApplicationRecord
|
||||||
belongs_to :defaut_groupe_instructeur, class_name: 'GroupeInstructeur', inverse_of: false, optional: true
|
belongs_to :defaut_groupe_instructeur, class_name: 'GroupeInstructeur', inverse_of: false, optional: true
|
||||||
|
|
||||||
has_one_attached :logo do |attachable|
|
has_one_attached :logo do |attachable|
|
||||||
attachable.variant :email, resize_to_limit: [150, 150]
|
attachable.variant :email, resize_to_limit: [450, 450]
|
||||||
end
|
end
|
||||||
has_one_attached :notice
|
has_one_attached :notice
|
||||||
has_one_attached :deliberation
|
has_one_attached :deliberation
|
||||||
|
|
Loading…
Reference in a new issue