Skip to content

Commit

Permalink
Chrome: Fix visibility toggles
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed May 31, 2017
1 parent f5b6bbc commit c85ac20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/sidebar/post-visibility/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class PostVisibility extends Component {
</div>
{ visibilityOptions.map( ( { value, label, info, changeHandler, checked } ) => (
<label key={ value } className="editor-post-visibility__dialog-label">
<input type="radio" value={ value } onChange={ changeHandler } checked={ checked } />
<input type="radio" value={ value } onClick={ changeHandler } onChange={ changeHandler } checked={ checked } />
{ label }
{ <div className="editor-post-visibility__dialog-info">{ info }</div> }
</label>
Expand Down

0 comments on commit c85ac20

Please sign in to comment.