Merge branch 'fix_textfields' into shigusegubu

* fix_textfields:
  fixed incorrect height when empty text
This commit is contained in:
Henry Jameson 2018-12-25 04:08:38 +03:00
commit 51b604a790

View file

@ -305,7 +305,7 @@ const PostStatusForm = {
target.style.height = 'auto'
target.style.height = `${target.scrollHeight - vertPadding}px`
if (target.value === '') {
target.style.height = undefined
target.style.height = null
}
},
clearError () {