From df27f599d2ecf25f2cac854e779af34b0aab6c39 Mon Sep 17 00:00:00 2001 From: unarist Date: Tue, 26 Sep 2017 00:10:49 +0900 Subject: [PATCH] Increase max height of preview card image (#5092) We added horizontal layout to preview card for wide image. However, max height of the thumbnail is still limited to 120px and it makes nearly square images to too small for that layout. This PR increases max height as well as max width. --- app/models/preview_card.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/preview_card.rb b/app/models/preview_card.rb index b7efac354a..e2bf65d947 100644 --- a/app/models/preview_card.rb +++ b/app/models/preview_card.rb @@ -32,7 +32,7 @@ class PreviewCard < ApplicationRecord has_and_belongs_to_many :statuses - has_attached_file :image, styles: { original: '280x120>' }, convert_options: { all: '-quality 80 -strip' } + has_attached_file :image, styles: { original: '280x280>' }, convert_options: { all: '-quality 80 -strip' } include Attachmentable include Remotable