Skip to content

Commit

Permalink
Domains: add missing name attribute in SRV form
Browse files Browse the repository at this point in the history
Needed for form-state to work properly.
  • Loading branch information
Igor Klimer committed Nov 30, 2015
1 parent 329b40b commit 7b6acc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const SrvRecord = React.createClass( {
<FormFieldset>
<FormLabel>{ this.translate( 'Protocol', { context: 'Dns Record' } ) }</FormLabel>

<FormSelect onChange={ this.props.onChange( 'protocol' ) } value={ protocol }>
<FormSelect name="protocol" onChange={ this.props.onChange( 'protocol' ) } value={ protocol }>
{ options }
</FormSelect>
</FormFieldset>
Expand Down

0 comments on commit 7b6acc2

Please sign in to comment.