mirror of
https://github.com/penpot/penpot.git
synced 2026-03-27 13:50:26 +01:00
🐛 Fix issue when typography name is empty.
This commit is contained in:
committed by
Andrés Moya
parent
9ee5a3159c
commit
e44ea47497
@@ -441,7 +441,7 @@
|
||||
[path-name]
|
||||
(let [path-name-split (split-path path-name)
|
||||
path (str/join " / " (butlast path-name-split))
|
||||
name (last path-name-split)]
|
||||
name (or (last path-name-split) "")]
|
||||
[path name]))
|
||||
|
||||
(defn merge-path-item
|
||||
|
||||
Reference in New Issue
Block a user