Skip to content

Commit 34284d8

Browse files
committed
Increase slider min size
1 parent 8a6a4f7 commit 34284d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/slider/scope-slider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const ScopeSlider: React.FC<ScopeSliderProps> = ({ scope, setScope, allow
2020
* Non supported dimensions simply hide the slider from the view
2121
* since we can manage scopes from advanced view
2222
*/
23-
if (sizePx < 250 || sizePx > 2000) {
23+
if (sizePx < 270 || sizePx > 2000) {
2424
return null;
2525
}
2626

0 commit comments

Comments
 (0)