mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 03:51:21 -05:00
🐛 Fix incorrect feature detection on frontend code
This commit is contained in:
parent
ca50486639
commit
a9dd55b8d2
1 changed files with 6 additions and 6 deletions
|
@ -32,11 +32,11 @@
|
|||
|
||||
(defn get-team-enabled-features
|
||||
[state]
|
||||
(let [runtime-features (set/intersection (:features/runtime state #{})
|
||||
cfeat/no-migration-features)]
|
||||
(-> global-enabled-features
|
||||
(set/union runtime-features)
|
||||
(set/union (:features/team state #{})))))
|
||||
(-> global-enabled-features
|
||||
(set/union (:features/runtime state #{}))
|
||||
(set/intersection cfeat/no-migration-features)
|
||||
(set/union cfeat/default-enabled-features)
|
||||
(set/union (:features/team state #{}))))
|
||||
|
||||
(def features-ref
|
||||
(l/derived get-team-enabled-features st/state =))
|
||||
|
@ -99,7 +99,7 @@
|
|||
ptk/UpdateEvent
|
||||
(update [_ state]
|
||||
(let [runtime-features (get state :features/runtime #{})
|
||||
team-features (into cfeat/default-enabled-features
|
||||
team-features (into #{}
|
||||
cfeat/xf-supported-features
|
||||
team-features)]
|
||||
(-> state
|
||||
|
|
Loading…
Add table
Reference in a new issue