From acef775131aa94a474239586fadcc7a0b0ac78e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bel=C3=A9n=20Albeza?= Date: Thu, 8 Feb 2024 10:03:31 +0100 Subject: [PATCH] :bug: Fix mixed values displays for measurements in the design tab --- .../src/app/main/ui/components/numeric_input.cljs | 2 +- .../ui/workspace/sidebar/options/menus/measures.cljs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/main/ui/components/numeric_input.cljs b/frontend/src/app/main/ui/components/numeric_input.cljs index b364bb23f..4c2b2c575 100644 --- a/frontend/src/app/main/ui/components/numeric_input.cljs +++ b/frontend/src/app/main/ui/components/numeric_input.cljs @@ -53,7 +53,7 @@ ;; This `value` represents the previous value and is used as ;; initil value for the simple math expression evaluation. - value (d/parse-double value-str default) + value (when (not= :multiple value-str) (d/parse-double value-str default)) ;; We need to store the handle-blur ref so we can call it on unmount dirty-ref (mf/use-ref false) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/measures.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/measures.cljs index 530ee7ed4..1eeba68c8 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/measures.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/measures.cljs @@ -391,7 +391,7 @@ [:span {:class (stl/css :icon-text)} "W"] [:> numeric-input* {:min 0.01 :no-validate true - :placeholder "--" + :placeholder (if (= :multiple (:width values)) (tr "settings.multiple") "--") :on-change on-width-change :disabled disabled-width-sizing? :className (stl/css :numeric-input) @@ -402,7 +402,7 @@ [:span {:class (stl/css :icon-text)} "H"] [:> numeric-input* {:min 0.01 :no-validate true - :placeholder "--" + :placeholder (if (= :multiple (:height values)) (tr "settings.multiple") "--") :on-change on-height-change :disabled disabled-height-sizing? :className (stl/css :numeric-input) @@ -422,7 +422,7 @@ :title (tr "workspace.options.x")} [:span {:class (stl/css :icon-text)} "X"] [:> numeric-input* {:no-validate true - :placeholder "--" + :placeholder (if (= :multiple (:x values)) (tr "settings.multiple") "--") :on-change on-pos-x-change :disabled disabled-position-x? :className (stl/css :numeric-input) @@ -433,7 +433,7 @@ :title (tr "workspace.options.y")} [:span {:class (stl/css :icon-text)} "Y"] [:> numeric-input* {:no-validate true - :placeholder "--" + :placeholder (if (= :multiple (:y values)) (tr "settings.multiple") "--") :disabled disabled-position-y? :on-change on-pos-y-change :className (stl/css :numeric-input) @@ -450,7 +450,7 @@ :min 0 :max 359 :data-wrap true - :placeholder "--" + :placeholder (if (= :multiple (:rotation values)) (tr "settings.multiple") "--") :on-change on-rotation-change :className (stl/css :numeric-input) :value (:rotation values)}]]) @@ -464,7 +464,7 @@ :title (tr "workspace.options.radius")} [:span {:class (stl/css :icon)} i/corner-radius-refactor] [:> numeric-input* - {:placeholder "Mixed" + {:placeholder (if (= :multiple (:rx values)) (tr "settings.multiple") "--") :ref radius-input-ref :min 0 :on-change on-radius-1-change