mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 00:05:31 +00:00
* Revert "FIX: fixes regression where wizard dropdown couldn't update (#10838)" This reverts commit e3b2fc60749ca3b584955d13a02cbe7f783a90a7. * Revert "DEV: replaces unecessary (action (mut .*)) by (mut .*) (#10822)" This reverts commit c0350dc362ce97af7424e8b7b93113a0a2e50510.
31 lines
633 B
Handlebars
31 lines
633 B
Handlebars
<b>{{i18n "admin.permalink.form.label"}}</b>
|
|
|
|
{{text-field
|
|
value=url
|
|
disabled=formSubmitted
|
|
class="permalink-url"
|
|
placeholderKey="admin.permalink.url"
|
|
autocorrect="off"
|
|
autocapitalize="off"}}
|
|
|
|
{{combo-box
|
|
content=permalinkTypes
|
|
value=permalinkType
|
|
onChange=(action (mut permalinkType))
|
|
class="permalink-type"
|
|
}}
|
|
|
|
{{text-field
|
|
value=permalink_type_value
|
|
disabled=formSubmitted
|
|
class="external-url"
|
|
placeholderKey=permalinkTypePlaceholder
|
|
autocorrect="off"
|
|
autocapitalize="off"}}
|
|
|
|
{{d-button
|
|
class="btn-default"
|
|
action=(action "submit")
|
|
disabled=formSubmitted
|
|
label="admin.permalink.form.add"}}
|