mirror of
https://github.com/penpot/penpot.git
synced 2025-08-06 08:08:29 +02:00
🐛 Fix incorrect theem selection on export progress bar color
This commit is contained in:
parent
481d1ec53a
commit
34d6e86e42
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue