0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 07:41:43 -05:00

🐛 Fix negative values in blur options

This commit is contained in:
alonso.torres 2021-07-07 13:44:14 +02:00 committed by Andrés Moya
parent 7cc9fa6d30
commit 163215d5c9
2 changed files with 2 additions and 1 deletions

View file

@ -26,6 +26,7 @@
- Fix color-input wrong behavior (on workspace page color) [Taiga #1795](https://tree.taiga.io/project/penpot/issue/1795).
- Fix file contextual menu in shared libraries at dashboard [Taiga #1865](https://tree.taiga.io/project/penpot/issue/1865).
- Fix problem with color picker and fonts [#1049](https://github.com/penpot/penpot/issues/1049)
- Fix negative values in blur [#1815](https://tree.taiga.io/project/penpot/issue/1815)
### :arrow_up: Deps updates
### :boom: Breaking changes

View file

@ -72,7 +72,7 @@
[:div.element-set-content
[:& input-row {:label "Value"
:class "pixels"
:min 0
:min "0"
:value (:value blur)
:placeholder (tr "settings.multiple")
:on-change handle-change}]])]))