mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Increase max messages length
This commit is contained in:
parent
82a6dcb65b
commit
b45d4eaadd
@ -144,7 +144,7 @@ const ConvChatWindow = {
|
||||
class: "form-control",
|
||||
placeholder: tr("New message..."),
|
||||
});
|
||||
inputText.maxLength = 200;
|
||||
inputText.maxLength = ServerConfig.conf.max_conversation_message_len;
|
||||
|
||||
//Enable textarea 2.0 on the message
|
||||
var textarea2 = new ComunicWeb.components.textarea();
|
||||
|
@ -457,7 +457,7 @@ const ConversationPageConvPart = {
|
||||
class: "form-control",
|
||||
placeholder: "New message...",
|
||||
});
|
||||
inputText.maxLength = 200;
|
||||
inputText.maxLength = ServerConfig.conf.max_conversation_message_len;
|
||||
inputText.focus();
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user