mirror of
https://github.com/penpot/penpot.git
synced 2025-06-06 09:31:38 +02:00
🐛 Fix issue when typography name is empty.
This commit is contained in:
parent
eb1bcfba83
commit
7014bc7a3c
2 changed files with 6 additions and 6 deletions
|
@ -436,7 +436,7 @@
|
||||||
[path-name]
|
[path-name]
|
||||||
(let [path-name-split (split-path path-name)
|
(let [path-name-split (split-path path-name)
|
||||||
path (str/join " / " (butlast path-name-split))
|
path (str/join " / " (butlast path-name-split))
|
||||||
name (last path-name-split)]
|
name (or (last path-name-split) "")]
|
||||||
[path name]))
|
[path name]))
|
||||||
|
|
||||||
(defn merge-path-item
|
(defn merge-path-item
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue