Skip to content

Commit

Permalink
Merge pull request #7126 from iriman/patch-1
Browse files Browse the repository at this point in the history
increase width of input field
  • Loading branch information
quincylvania committed Dec 18, 2019
2 parents b7d6dd0 + 8f9facf commit c962f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui/issues.js
Expand Up @@ -614,7 +614,7 @@ export function uiIssues(context) {
.attr('class', 'square-degrees-input')
.call(utilNoAuto)
.on('input', function() {
this.style.width = (this.value.length + 2.5) + 'ch'; // resize
this.style.width = (this.value.length + 4.5) + 'ch'; // resize
})
.on('click', function () {
d3_event.preventDefault();
Expand Down

0 comments on commit c962f4e

Please sign in to comment.