mirror of
https://github.com/penpot/penpot.git
synced 2025-03-12 15:51:37 -05:00
🐛 Fix negative values in blur options
This commit is contained in:
parent
7cc9fa6d30
commit
163215d5c9
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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}]])]))
|
||||
|
|
Loading…
Add table
Reference in a new issue