fix newMessage

add-admin-interface
adb 4 years ago
parent c7c7d2c120
commit afbb98eb4d

@ -36,14 +36,15 @@ export default {
}, },
methods: { methods: {
async sendMessage(){ async sendMessage(){
if (this.msg.content.body !== "") { let content = this.msg.content;
if (!content.body) return;
//content.body = content.body.replace(/\n$/gm, '');
let msgSend = Object.assign({}, this.msg); let msgSend = Object.assign({}, this.msg);
this.msg.content.body = "";
await matrix.sendEvent(msgSend, this.roomId); await matrix.sendEvent(msgSend, this.roomId);
content.body = "";
let id = this.$refs.newMessageInput; let id = this.$refs.newMessageInput;
id.style.height = "1.25rem"; id.style.height = "1.25rem";
this.onResize(id.parentElement.clientHeight); this.onResize(id.parentElement.clientHeight);
}
}, },
resizeMessageBanner(){ resizeMessageBanner(){
let id = this.$refs.newMessageInput; let id = this.$refs.newMessageInput;

Loading…
Cancel
Save