Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
fix composer
Dieser Commit ist enthalten in:
Ursprung
05b651fdc6
Commit
7a27139ebc
2 geänderte Dateien mit 9 neuen und 8 gelöschten Zeilen
|
@ -30,13 +30,12 @@
|
||||||
content=popupMenuOptions}}
|
content=popupMenuOptions}}
|
||||||
{{else}}
|
{{else}}
|
||||||
<div>{{d.icon}}</div>
|
<div>{{d.icon}}</div>
|
||||||
{{d-button
|
<button class='wizard-btn {{b.className}}' {{action b.action b}} title="{{b.title}}">
|
||||||
action=b.action
|
{{d-icon b.icon}}
|
||||||
actionParam=b
|
{{#if b.label}}
|
||||||
translatedTitle=b.title
|
<span class="d-button-label">{{i18n b.label}}</span>
|
||||||
label=b.label
|
{{/if}}
|
||||||
icon=b.icon
|
</button>
|
||||||
class=b.className}}
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
{{wizard-editor showPreview=showPreview value=field.value placeholder=field.placeholder}}
|
{{wizard-editor showPreview=showPreview value=field.value placeholder=field.placeholder}}
|
||||||
{{d-button class='wizard-btn primary' action='togglePreview' label=togglePreviewLabel}}
|
<button class='wizard-btn primary' {{action 'togglePreview'}}>
|
||||||
|
<span class="d-button-label">{{i18n togglePreviewLabel}}</span>
|
||||||
|
</button>
|
Laden …
In neuem Issue referenzieren