mirror of
https://github.com/penpot/penpot.git
synced 2025-05-18 01:26:10 +02:00
🐛 Fix fill information not complete when paste plain text
This commit is contained in:
parent
f2862b6c16
commit
e4eb8004e2
2 changed files with 8 additions and 1 deletions
|
@ -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]
|
||||
|
@ -1571,7 +1572,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}]}))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue