0
Fork 0
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:
alonso.torres 2024-05-30 09:25:08 +02:00 committed by Andrey Antukh
parent 4bd585739a
commit ae774b10be
2 changed files with 3 additions and 2 deletions

View file

@ -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))})]

View file

@ -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 {