diff --git a/website/client/components/userMenu/inbox.vue b/website/client/components/userMenu/inbox.vue index 0b037e186e..91889f8453 100644 --- a/website/client/components/userMenu/inbox.vue +++ b/website/client/components/userMenu/inbox.vue @@ -52,8 +52,14 @@ // @TODO: Implement new message header here when we fix the above .new-message-row(v-if='selectedConversation.key && !user.flags.chatRevoked') - textarea(v-model='newMessage', @keyup.ctrl.enter='sendPrivateMessage()') - button.btn.btn-secondary(@click='sendPrivateMessage()') Send + textarea( + v-model='newMessage', + @keyup.ctrl.enter='sendPrivateMessage()', + maxlength='3000' + ) + button.btn.btn-secondary(@click='sendPrivateMessage()') {{$t('send')}} + .row + span.ml-3 {{ currentLength }} / 3000