fix(ui): optional list update
This commit is contained in:
parent
8d1e21bef6
commit
9545879fbf
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ export default class MessageManager {
|
|||
|
||||
public updateLists(lists: Partial<InitialLists>) {
|
||||
// update each tab with tabid from events !!!
|
||||
Object.values(this.tabs)[0].updateLists(lists)
|
||||
Object.values(this.tabs)[0]?.updateLists?.(lists)
|
||||
}
|
||||
|
||||
public _sortMessagesHack = (msgs: Message[]) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue