diff --git a/CHANGES.md b/CHANGES.md index cab9f0cbb4..8cecbc3cbb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,7 @@ ### :bug: Bugs fixed +- Fix wrong props on padding input [Taiga #8254](https://tree.taiga.io/project/penpot/issue/8254) - Fix fill collapsed options [Taiga #8351](https://tree.taiga.io/project/penpot/issue/8351) - Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353) - Fix components are not dragged from the group to the assets tab [Taiga #8273](https://tree.taiga.io/project/penpot/issue/8273) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs index b7a5dde44f..83caf49bdd 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs @@ -342,7 +342,6 @@ :data-attr "p1" :on-change on-change' :on-focus on-focus - :nillable true :min 0 :value p1}]] [:div {:class (stl/css :padding-simple) @@ -357,7 +356,6 @@ :on-change on-change' :on-focus on-focus :on-blur on-padding-blur - :nillable true :min 0 :value p2}]]])) @@ -400,7 +398,6 @@ :on-change on-change' :on-focus on-focus :on-blur on-padding-blur - :nillable true :min 0 :value p1}]] @@ -415,7 +412,6 @@ :on-change on-change' :on-focus on-focus :on-blur on-padding-blur - :nillable true :min 0 :value p2}]] @@ -430,7 +426,6 @@ :on-change on-change' :on-focus on-focus :on-blur on-padding-blur - :nillable true :min 0 :value p3}]] @@ -445,7 +440,6 @@ :on-change on-change' :on-focus on-focus :on-blur on-padding-blur - :nillable true :min 0 :value p4}]]]))