Skip to content

Commit

Permalink
fix(api): set minimum image dimensions to 256 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Feb 3, 2023
1 parent ea69753 commit ecec0a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/params.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"height": {
"default": 512,
"min": 64,
"min": 256,
"max": 1024,
"step": 8
},
Expand Down Expand Up @@ -120,7 +120,7 @@
},
"width": {
"default": 512,
"min": 64,
"min": 256,
"max": 1024,
"step": 8
}
Expand Down

0 comments on commit ecec0a2

Please sign in to comment.