mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
Merge pull request #2027 from penpot/eva-bugfix-selected-colors
🐛 Fix modify colors in a row in selected colors
This commit is contained in:
commit
10a33fb102
2 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
### :bug: Bugs fixed
|
||||
|
||||
- Fix modify colors in a row in selected colors [Taiga #3653](https://tree.taiga.io/project/penpot/issue/3653)
|
||||
- Fix crash when double click on viewer assets [Taiga #3625](https://tree.taiga.io/project/penpot/issue/3625)
|
||||
- Fix right click on typographies assets [Taiga #3638](https://tree.taiga.io/project/penpot/issue/3638)
|
||||
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
on-change
|
||||
(mf/use-fn
|
||||
(fn [new-color old-color]
|
||||
(let [old-color (-> (or @prev-color* old-color)
|
||||
(let [old-color (-> (or old-color @prev-color*)
|
||||
(dissoc :name)
|
||||
(dissoc :path)
|
||||
(d/without-nils))
|
||||
|
|
Loading…
Reference in a new issue