0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-20 19:51:23 -05:00

🐛 Fix shape exportation

This commit is contained in:
Andrey Antukh 2022-12-07 17:05:49 +01:00
parent 79f27a849c
commit 67682fe211
2 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@
com.cognitect/transit-cljs {:mvn/version "0.8.280"}
java-http-clj/java-http-clj {:mvn/version "0.4.3"}
funcool/promesa {:mvn/version "10.0.570"}
funcool/promesa {:mvn/version "10.0.571"}
funcool/cuerdas {:mvn/version "2022.06.16-403"}
lambdaisland/uri {:mvn/version "1.13.95"

View file

@ -103,10 +103,10 @@
(let [features (cond-> #{} components-v2 (conj "components/v2"))]
(->> (rx/zip
(repo/query! :font-variants {:file-id file-id})
(repo/cmd! :page {:file-id file-id
:page-id page-id
:object-id object-id
:features features}))
(repo/cmd! :get-page {:file-id file-id
:page-id page-id
:object-id object-id
:features features}))
(rx/tap (fn [[fonts]]
(when (seq fonts)
(st/emit! (df/fonts-fetched fonts)))))