mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 12:01:19 -05:00
🐛 Fix precission on export modal
This commit is contained in:
parent
d73ed95719
commit
927dbbfe82
1 changed files with 3 additions and 2 deletions
|
@ -18,6 +18,7 @@
|
|||
[app.main.ui.workspace.shapes :refer [shape-wrapper]]
|
||||
[app.util.dom :as dom]
|
||||
[app.util.i18n :as i18n :refer [tr c]]
|
||||
[app.util.strings :as ust]
|
||||
[cuerdas.core :as str]
|
||||
[rumext.alpha :as mf]))
|
||||
|
||||
|
@ -107,8 +108,8 @@
|
|||
|
||||
[:div.field.name (cond-> (:name shape) suffix (str suffix))]
|
||||
(when (:scale export)
|
||||
[:div.field.scale (dm/str (* width (:scale export)) "x"
|
||||
(* height (:scale export)) "px ")])
|
||||
[:div.field.scale (dm/str (ust/format-precision (* width (:scale export)) 2) "x"
|
||||
(ust/format-precision (* height (:scale export)) 2) "px ")])
|
||||
|
||||
(when (:type export)
|
||||
[:div.field.extension (-> export :type d/name str/upper)])]))]
|
||||
|
|
Loading…
Add table
Reference in a new issue