Commit 08cb423c authored by Kris Moore's avatar Kris Moore

Switch to list type for Environment, so that UI can render properly

parent 66f48466
...@@ -71,9 +71,24 @@ questions: ...@@ -71,9 +71,24 @@ questions:
label: "IPFS image environment" label: "IPFS image environment"
group: "IPFS Configuration" group: "IPFS Configuration"
schema: schema:
type: dict type: list
additional_attrs: true default: []
attrs: [] items:
- variable: environmentVariable
label: "Environment Variable"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
required: true
- variable: value
label: "Value"
schema:
type: string
required: true
- variable: service - variable: service
description: "IPFS Service Configuration" description: "IPFS Service Configuration"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment