From e60177f14aaed7842ee6cb4bf287121ea077a5fd Mon Sep 17 00:00:00 2001 From: user Date: Mon, 30 Apr 2018 00:58:08 +0300 Subject: [PATCH] Sending messages is allowed; PM related texts moved --- website/client/components/userMenu/inbox.vue | 10 +--------- website/common/locales/en/generic.json | 10 ---------- website/common/locales/en/groups.json | 9 ++++++++- 3 files changed, 9 insertions(+), 20 deletions(-) diff --git a/website/client/components/userMenu/inbox.vue b/website/client/components/userMenu/inbox.vue index a7d8895a5f..92c94aa9b5 100644 --- a/website/client/components/userMenu/inbox.vue +++ b/website/client/components/userMenu/inbox.vue @@ -22,7 +22,7 @@ // .col-8.to-form(v-if='displayCreate') // strong To: // b-form-input - .row(v-if="!this.user.inbox.optOut") + .row .col-4.sidebar .search-section b-form-input(:placeholder="$t('search')", v-model='search') @@ -51,14 +51,6 @@ .new-message-row(v-if='selectedConversation.key') textarea(v-model='newMessage') button.btn.btn-secondary(@click='sendPrivateMessage()') Send - .row(v-else) - .col-12 - .caption-disabled - .svg-icon.envelope(v-html="icons.messageIcon") - h3 {{$t('disabledPMCaptionTitle')}} - p.text-center {{$t('disabledPMCaptionLine1')}} - p.text-center {{$t('disabledPMCaptionLine2')}} - button.btn.btn-primary(@click="toggleOpt()") {{$t('PMEnable')}}