0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-24 10:20:28 +01:00
discourse-custom-wizard/assets/javascripts/discourse/components/wizard-mapper-connector.hbs

13 Zeilen
266 B
Handlebars

2024-11-22 16:45:50 +01:00
{{#if this.hasMultiple}}
2020-04-02 07:21:57 +02:00
{{combo-box
2024-11-22 16:45:50 +01:00
value=this.connector
content=this.connectors
2023-07-10 08:55:54 +02:00
onChange=(action "changeConnector")
}}
2020-04-06 10:36:38 +02:00
{{else}}
2024-11-22 16:45:50 +01:00
{{#if this.connector}}
2020-04-15 07:22:21 +02:00
<span class="connector-single">
2024-11-22 16:45:50 +01:00
{{this.connectorLabel}}
2020-04-15 07:22:21 +02:00
</span>
{{/if}}
2023-07-10 08:55:54 +02:00
{{/if}}