diff --git a/CHANGES.md b/CHANGES.md index 8935ed9811..966de9ca51 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,12 @@ ### :arrow_up: Deps updates ### :heart: Community contributions by (Thank you!) +## 1.14.2-beta + +### :bug: Bugs fixed + +- Fix fill information not complete when paste plain text [Taiga #3680](https://tree.taiga.io/project/penpot/issue/3680) + ## 1.14.1-beta ### :bug: Bugs fixed diff --git a/frontend/src/app/main/data/workspace.cljs b/frontend/src/app/main/data/workspace.cljs index c8ac153de1..26fca15259 100644 --- a/frontend/src/app/main/data/workspace.cljs +++ b/frontend/src/app/main/data/workspace.cljs @@ -19,6 +19,7 @@ [app.common.pages.helpers :as cph] [app.common.spec :as us] [app.common.spec.shape :as spec.shape] + [app.common.text :as txt] [app.common.transit :as t] [app.common.uuid :as uuid] [app.config :as cfg] @@ -1565,7 +1566,7 @@ (let [paragraphs (->> (str/lines text) (map str/trim) (mapv #(hash-map :type "paragraph" - :children [{:text %}])))] + :children [(merge txt/default-text-attrs {:text %})])))] {:type "root" :children [{:type "paragraph-set" :children paragraphs}]}))