Browse Source

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.
pull/4/head
unarist 6 years ago
committed by Eugen Rochko
parent
commit
5c82c2b75f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/preview_card.rb

+ 1
- 1
app/models/preview_card.rb View File

@ -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

Loading…
Cancel
Save