Skip to content

Commit

Permalink
Merge pull request #2870 from tfrommen/issue/732_link_handler
Browse files Browse the repository at this point in the history
Make URL input actually a plain text input. #732
  • Loading branch information
aduth authored Oct 4, 2017
2 parents 987513d + fd49372 commit b7f61d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blocks/url-input/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class UrlInput extends Component {
<div className="blocks-url-input">
<input
autoFocus
type="url"
type="text"
aria-label={ __( 'URL' ) }
required
value={ value }
Expand Down
2 changes: 1 addition & 1 deletion blocks/url-input/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
flex-grow: 1;
position: relative;

input[type=url] {
input[type=text] {
padding: 10px;
font-size: $default-font-size;
width: 100%;
Expand Down

0 comments on commit b7f61d2

Please sign in to comment.