2018-05-24 15:34:58 +10:00
|
|
|
{{#each inputs as |input|}}
|
2020-04-06 18:36:38 +10:00
|
|
|
{{#if input.connector}}
|
2020-04-20 19:41:13 +10:00
|
|
|
{{wizard-mapper-connector
|
|
|
|
connector=input.connector
|
|
|
|
connectorType="input"
|
2021-04-12 19:49:53 +05:30
|
|
|
onUpdate=(action "inputUpdated")}}
|
2020-04-06 18:36:38 +10:00
|
|
|
{{/if}}
|
2021-04-12 19:49:53 +05:30
|
|
|
|
|
|
|
{{wizard-mapper-input
|
2020-03-22 04:30:11 +11:00
|
|
|
input=input
|
2020-04-01 16:03:26 +11:00
|
|
|
options=inputOptions
|
2021-04-12 19:49:53 +05:30
|
|
|
remove=(action "remove")
|
|
|
|
onUpdate=(action "inputUpdated")}}
|
2018-05-24 15:34:58 +10:00
|
|
|
{{/each}}
|
2020-03-22 04:30:11 +11:00
|
|
|
|
2020-03-30 17:16:03 +11:00
|
|
|
{{#if canAdd}}
|
2020-04-01 16:03:26 +11:00
|
|
|
<span class="add-mapper-input">
|
2021-04-12 19:49:53 +05:30
|
|
|
{{d-button action="add" label="admin.wizard.add" icon="plus"}}
|
2020-03-31 19:30:53 +11:00
|
|
|
</span>
|
2021-04-12 19:49:53 +05:30
|
|
|
{{/if}}
|