🐛 Fix mixed values displays for measurements in the design tab

This commit is contained in:
Belén Albeza 2024-02-08 10:03:31 +01:00 committed by Alonso Torres
parent d91b3d4fb6
commit acef775131
2 changed files with 7 additions and 7 deletions

View file

@ -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)