From 163215d5c970dad2784484162fb9f6d9e443d5a5 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 7 Jul 2021 13:44:14 +0200 Subject: [PATCH] :bug: Fix negative values in blur options --- CHANGES.md | 1 + .../src/app/main/ui/workspace/sidebar/options/menus/blur.cljs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 2f8f8a77f7..f303bdd06a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/blur.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/blur.cljs index fac3572764..3ff9d3f268 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/blur.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/blur.cljs @@ -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}]])]))