diff --git a/CHANGES.md b/CHANGES.md index 512173f424..31e97a26e0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -50,6 +50,7 @@ on-premises instances** that want to keep up to date. - Fix font size input not displaying "mixed" when multiple texts are selected [Taiga #11177](https://tree.taiga.io/project/penpot/issue/11177) - Misalignments at Create account [Taiga #11315](https://tree.taiga.io/project/penpot/issue/11315) - Fix issue with importing files where flex/grid is used [Taiga #11334](https://tree.taiga.io/project/penpot/issue/11334) +- Fix wrong color in the export progress bar [Taiga #11299](https://tree.taiga.io/project/penpot/issue/11299) ## 2.7.2 diff --git a/frontend/src/app/main/ui/exports/assets.cljs b/frontend/src/app/main/ui/exports/assets.cljs index 633bceed7d..4544fc171a 100644 --- a/frontend/src/app/main/ui/exports/assets.cljs +++ b/frontend/src/app/main/ui/exports/assets.cljs @@ -21,6 +21,7 @@ [app.util.dom :as dom] [app.util.i18n :as i18n :refer [tr c]] [app.util.strings :as ust] + [app.util.theme :as theme] [cuerdas.core :as str] [rumext.v2 :as mf])) @@ -208,8 +209,8 @@ [] (let [state (mf/deref refs/export) profile (mf/deref refs/profile) - theme (or (:theme profile) "default") - is-default-theme? (= "default" theme) + theme (or (:theme profile) theme/default) + is-default-theme? (= theme/default theme) error? (:error state) healthy? (:healthy? state) detail-visible? (:detail-visible state)