mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
a433b30650
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
23 lines
557 B
Handlebars
23 lines
557 B
Handlebars
<label>{{i18n "admin.logs.screened_ips.form.label"}}</label>
|
|
<TextField
|
|
@value={{this.ip_address}}
|
|
@disabled={{this.formSubmitted}}
|
|
@class="ip-address-input"
|
|
@placeholderKey="admin.logs.screened_ips.form.ip_address"
|
|
@autocorrect="off"
|
|
@autocapitalize="off"
|
|
/>
|
|
|
|
<ComboBox
|
|
@content={{this.actionNames}}
|
|
@value={{this.actionName}}
|
|
@onChange={{action (mut this.actionName)}}
|
|
/>
|
|
|
|
<DButton
|
|
@type="submit"
|
|
@class="btn-default"
|
|
@action={{action "submitForm"}}
|
|
@disabled={{this.formSubmitted}}
|
|
@label="admin.logs.screened_ips.form.add"
|
|
/> |