Error in chat patch
This commit is contained in:
parent
54c5943180
commit
140da78397
@ -164,7 +164,7 @@ export default class extends AbstractView {
|
|||||||
chat_input.maxLength=255;
|
chat_input.maxLength=255;
|
||||||
chat.appendChild(chat_input);
|
chat.appendChild(chat_input);
|
||||||
|
|
||||||
let members_id = this.channelManager.channel.members_id;
|
let members_id = this.channelManager.channel.members;
|
||||||
|
|
||||||
chat_input.onkeydown = async () => {
|
chat_input.onkeydown = async () => {
|
||||||
if (event.keyCode == 13 && this.channelManager.channel != undefined) {
|
if (event.keyCode == 13 && this.channelManager.channel != undefined) {
|
||||||
@ -235,7 +235,7 @@ export default class extends AbstractView {
|
|||||||
|
|
||||||
async display_members(chat) {
|
async display_members(chat) {
|
||||||
|
|
||||||
let members_id = this.channelManager.channel.members_id;
|
let members_id = this.channelManager.channel.members;
|
||||||
|
|
||||||
let members = document.createElement("h2");
|
let members = document.createElement("h2");
|
||||||
members.id = "members";
|
members.id = "members";
|
||||||
|
Loading…
Reference in New Issue
Block a user