mirror of
https://github.com/penpot/penpot.git
synced 2025-05-18 14:46:10 +02:00
🐛 Fix mixed values displays for measurements in the design tab
This commit is contained in:
parent
d91b3d4fb6
commit
acef775131
2 changed files with 7 additions and 7 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue