logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: e60d9f2d5ae7de753cc9d3e74bd675ec79c9219e
parent: 4e24ce2185aa4309ed9c3a239fa89d66989283d6
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Sun,  8 Dec 2019 13:00:21 +0000

Merge branch 'fix/remove-status-hack' into 'develop'

Remove whitespace hack on empty post content

See merge request pleroma/pleroma-fe!1023

Diffstat:

Msrc/components/post_status_form/post_status_form.js4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js @@ -169,9 +169,7 @@ const PostStatusForm = { if (this.submitDisabled) { return } if (this.newStatus.status === '') { - if (this.newStatus.files.length > 0) { - this.newStatus.status = '\u200b' // hack - } else { + if (this.newStatus.files.length === 0) { this.error = 'Cannot post an empty status with no files' return }