Fix opening 'Add Contact' tab

This commit is contained in:
morethanwords 2021-09-26 00:04:54 +04:00
parent 911c1dc702
commit 1760ad42d8

View File

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