Skip to content

Commit

Permalink
feat(web): add (lower) thumbnail resolution options (#5107)
Browse files Browse the repository at this point in the history
* Added extra lower resolution options for thumbnails

Added 200p and 720p as options for small and large thumbnails resolutions respectively.

* Also included 1080p in large thumbnails resolution options
  • Loading branch information
davidacampos authored Nov 17, 2023
1 parent 82f12b8 commit 47a4984
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
{ value: 720, text: '720p' },
{ value: 480, text: '480p' },
{ value: 250, text: '250p' },
{ value: 200, text: '200p' },
]}
name="resolution"
isEdited={thumbnailConfig.webpSize !== savedConfig.webpSize}
Expand All @@ -105,6 +106,8 @@
options={[
{ value: 2160, text: '4K' },
{ value: 1440, text: '1440p' },
{ value: 1080, text: '1080p' },
{ value: 720, text: '720p' },
]}
name="resolution"
isEdited={thumbnailConfig.jpegSize !== savedConfig.jpegSize}
Expand Down

0 comments on commit 47a4984

Please sign in to comment.