0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

Merge pull request #4992 from penpot/juanfran-invalid-content-path-arguments

🐛 Fix typo in command parsing (paras to params)
This commit is contained in:
Alejandro 2024-08-14 09:40:37 +02:00 committed by GitHub
commit d9a941cb32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -394,7 +394,7 @@
(when (some? command)
(d/without-nils
{:command (-> (obj/get command "command") parse-command-type)
:params (-> (obj/get command "paras") parse-command-params)})))
:params (-> (obj/get command "params") parse-command-params)})))
(defn parse-path-content
[^js content]