diff options
| author | rinpatch <rinpatch@sdf.org> | 2019-12-08 02:05:50 +0300 |
|---|---|---|
| committer | rinpatch <rinpatch@sdf.org> | 2019-12-08 02:05:50 +0300 |
| commit | 3b11860d3445271c9495b08f8c68330e48c5f33e (patch) | |
| tree | 54935b4c871c13f335d7740a691c44d200406eb2 /src | |
| parent | 4e24ce2185aa4309ed9c3a239fa89d66989283d6 (diff) | |
Remove whitespace hack on empty post content
It's no longer necessary since the backend handles posts with empty
content fine and also fixes an odd whitespace when attachment links are
disabled.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index af6299e4..74067fef 100644 --- 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 } |
