mirror of
https://github.com/penpot/penpot.git
synced 2025-02-08 08:09:14 -05:00
✨ Removed mandatory manifest property
This commit is contained in:
parent
4bd585739a
commit
ae774b10be
2 changed files with 3 additions and 2 deletions
|
@ -120,16 +120,16 @@
|
||||||
(fn [body]
|
(fn [body]
|
||||||
(let [name (obj/get body "name")
|
(let [name (obj/get body "name")
|
||||||
desc (obj/get body "description")
|
desc (obj/get body "description")
|
||||||
host (obj/get body "host")
|
|
||||||
code (obj/get body "code")
|
code (obj/get body "code")
|
||||||
icon (obj/get body "icon")
|
icon (obj/get body "icon")
|
||||||
permissions (obj/get body "permissions")
|
permissions (obj/get body "permissions")
|
||||||
|
origin (obj/get (js/URL. plugin-url) "origin")
|
||||||
|
|
||||||
new-state
|
new-state
|
||||||
(conj plugins-state
|
(conj plugins-state
|
||||||
{:name name
|
{:name name
|
||||||
:description desc
|
:description desc
|
||||||
:host host
|
:host origin
|
||||||
:code code
|
:code code
|
||||||
:icon icon
|
:icon icon
|
||||||
:permissions (->> permissions (mapv str))})]
|
:permissions (->> permissions (mapv str))})]
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: $s-380;
|
height: $s-380;
|
||||||
|
padding-bottom: $s-16;
|
||||||
}
|
}
|
||||||
|
|
||||||
.primary-button {
|
.primary-button {
|
||||||
|
|
Loading…
Add table
Reference in a new issue