diff --git a/CHANGES.md b/CHANGES.md index 86a26622fc..22c8a5809b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -34,6 +34,7 @@ in future versions. Therefore, **migration from Redis to ValKey is recommended f on-premises instances** that want to keep up to date. ### :heart: Community contributions (Thank you!) +- Add Serbian language [GitHub #5002](https://github.com/penpot/penpot/issues/5002) by [crnobog69](https://github.com/crnobog69) ### :sparkles: New features & Enhancements @@ -52,7 +53,6 @@ on-premises instances** that want to keep up to date. - Update google fonts (at 2025/05/19) [Taiga 10792](https://tree.taiga.io/project/penpot/us/10792) - Add tooltip component to DS [Taiga 9220](https://tree.taiga.io/project/penpot/us/9220) - Allow multi file token export [Taiga #10144](https://tree.taiga.io/project/penpot/us/10144) -- Add Serbian language ### :bug: Bugs fixed diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/rows/color_row.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/rows/color_row.cljs index 102be8180b..6944ae7c75 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/rows/color_row.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/rows/color_row.cljs @@ -116,7 +116,8 @@ (fn [value] (let [color (-> color (assoc :color value) - (dissoc :gradient))] + (dissoc :gradient) + (select-keys types.color/color-attrs))] (st/emit! (dwc/add-recent-color color) (on-change color)))))