feat(web): add (lower) thumbnail resolution options (#5107)

* 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
This commit is contained in:
davidacampos 2023-11-17 12:25:35 -08:00 committed by GitHub
parent 82f12b8ee6
commit 47a4984a56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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