0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-15 09:17:02 +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 16:21:57 +11:00
{{combo-box
2024-11-22 16:45:50 +01:00
value=this.connector
content=this.connectors
2023-07-10 07:55:54 +01:00
onChange=(action "changeConnector")
}}
2020-04-06 18:36:38 +10:00
{{else}}
2024-11-22 16:45:50 +01:00
{{#if this.connector}}
2020-04-15 15:22:21 +10:00
<span class="connector-single">
2024-11-22 16:45:50 +01:00
{{this.connectorLabel}}
2020-04-15 15:22:21 +10:00
</span>
{{/if}}
2023-07-10 07:55:54 +01:00
{{/if}}