Browse Source

Fix opening 'Add Contact' tab

master
morethanwords 3 years ago
parent
commit
1760ad42d8
  1. 4
      src/components/chat/topbar.ts

4
src/components/chat/topbar.ts

@ -278,9 +278,13 @@ export default class ChatTopbar {
icon: 'adduser', icon: 'adduser',
text: 'AddContact', text: 'AddContact',
onClick: () => { onClick: () => {
if(!this.appSidebarRight.isTabExists(AppEditContactTab)) {
const tab = new AppEditContactTab(this.appSidebarRight); const tab = new AppEditContactTab(this.appSidebarRight);
tab.peerId = this.peerId; tab.peerId = this.peerId;
tab.open(); tab.open();
this.appSidebarRight.toggleSidebar(true);
}
}, },
verify: () => this.peerId > 0 && !this.appUsersManager.isContact(this.peerId) verify: () => this.peerId > 0 && !this.appUsersManager.isContact(this.peerId)
}, { }, {

Loading…
Cancel
Save