logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 57626c125d0477716a638854c4243ee0fde96923
parent: 8a15900c81eb6d1e1ec7f5f77868211f4da354e0
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Tue, 16 Jun 2020 14:43:48 +0000

Merge branch 'fix/disable-subject-when-posting' into 'develop'

disable subject field when posting #868

See merge request pleroma/pleroma-fe!1148

Diffstat:

MCHANGELOG.md1+
Msrc/components/post_status_form/post_status_form.vue1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -30,6 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Newlines in the muted words settings work again - Clicking on non-latin hashtags won't open a new window - Uploading and drag-dropping multiple files works correctly now. +- Subject field now appears disabled when posting ## [2.0.3] - 2020-05-02 ### Fixed diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue @@ -81,6 +81,7 @@ v-model="newStatus.spoilerText" type="text" :placeholder="$t('post_status.content_warning')" + :disabled="posting" class="form-post-subject" > </EmojiInput>