aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2020-08-18 00:52:51 +0300
committerHenry Jameson <me@hjkos.com>2020-08-18 00:52:51 +0300
commita6223cec0c6bb037f1e64a3bc7dfd7fca354faa1 (patch)
tree8cf8fd7d0e761a9ce0c4575d8ff702d1fa515bfe
parentecbbec7b9798caff1d401403592de5ba02a3f509 (diff)
Fix last line having slightly cut-off low-hanging parts of characters
-rw-r--r--src/components/post_status_form/post_status_form.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js
index e7094bec..66252bda 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -481,7 +481,7 @@ const PostStatusForm = {
// BEGIN content size update
target.style.height = 'auto'
- const heightWithoutPadding = Math.floor(target.scrollHeight - vertPadding)
+ const heightWithoutPadding = Math.ceil(target.scrollHeight - vertPadding) + 1
let newHeight = this.maxHeight ? Math.min(heightWithoutPadding, this.maxHeight) : heightWithoutPadding
// This is a bit of a hack to combat target.scrollHeight being different on every other input
// on some browsers for whatever reason. Don't change the height if difference is 1px or less.