mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 11:18:36 +00:00
Merge pull request #8133 from penpot/niwinz-develop-asset-export-whitespaces
✨ Add slugify to the filename on assets exportation
This commit is contained in:
commit
fb08dc65c8
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Remove whitespaces from asset export filename [Github #8133](https://github.com/penpot/penpot/pull/8133)
|
||||||
- Fix prototype connections lost when switching between variants [Taiga #12812](https://tree.taiga.io/project/penpot/issue/12812)
|
- Fix prototype connections lost when switching between variants [Taiga #12812](https://tree.taiga.io/project/penpot/issue/12812)
|
||||||
- Fix wrong image in the onboarding invitation block [Taiga #13040](https://tree.taiga.io/project/penpot/issue/13040)
|
- Fix wrong image in the onboarding invitation block [Taiga #13040](https://tree.taiga.io/project/penpot/issue/13040)
|
||||||
- Fix wrong register image [Taiga #12955](https://tree.taiga.io/project/penpot/task/12955)
|
- Fix wrong register image [Taiga #12955](https://tree.taiga.io/project/penpot/task/12955)
|
||||||
|
|||||||
@ -36,7 +36,7 @@
|
|||||||
{:path path
|
{:path path
|
||||||
:mtype (mime/get type)
|
:mtype (mime/get type)
|
||||||
:name name
|
:name name
|
||||||
:filename (str/concat name (mime/get-extension type))
|
:filename (str/concat (str/slug name) (mime/get-extension type))
|
||||||
:id task-id}))
|
:id task-id}))
|
||||||
|
|
||||||
(defn create-zip
|
(defn create-zip
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user