Commit a31d2451 authored by JC Brand's avatar JC Brand

Update to eslint 7.3.0

parent 0120f78c
This diff is collapsed.
......@@ -1592,8 +1592,6 @@ describe("A Chat Message", function () {
*/
const error_txt = 'Server-to-server connection failed: Connecting failed: connection timeout';
const sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
let fullname = _converse.xmppstatus.get('fullname'); // eslint-disable-line no-unused-vars
fullname = _.isEmpty(fullname) ? _converse.bare_jid: fullname;
await _converse.api.chats.open(sender_jid)
let msg_text = 'This message will not be sent, due to an error';
const view = _converse.api.chatviews.get(sender_jid);
......
......@@ -206,6 +206,10 @@ export class AutoComplete {
}
}
get list () {
return this._list;
}
get selected () {
return this.index > -1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment