Added name prop
This commit is contained in:
parent
6273537174
commit
8613326822
1 changed files with 12 additions and 7 deletions
|
|
@ -49,13 +49,18 @@
|
||||||
:id="plugin.id"
|
:id="plugin.id"
|
||||||
:requireConnection="plugin.requiresConnection"
|
:requireConnection="plugin.requiresConnection"
|
||||||
:currentTab="currentTab">
|
:currentTab="currentTab">
|
||||||
<JsonForm v-for="form in plugin.forms"
|
|
||||||
:key="form.route"
|
<div class="uk-flex uk-flex-column">
|
||||||
:route="form.route"
|
<JsonForm v-for="form in plugin.forms"
|
||||||
:isTask="form.isTask"
|
:key="`${form.route}/${form.name}`.replace(/\s+/g, '-').toLowerCase()"
|
||||||
:submitLabel="form.submitLabel"
|
:name="form.name"
|
||||||
:selfUpdate="form.selfUpdate"
|
:route="form.route"
|
||||||
:schema="form.schema"/>
|
:isTask="form.isTask"
|
||||||
|
:submitLabel="form.submitLabel"
|
||||||
|
:selfUpdate="form.selfUpdate"
|
||||||
|
:schema="form.schema"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
</tabContent>
|
</tabContent>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue