Bugfix: i broke the messagelist click function

This commit is contained in:
the-djmaze 2022-09-02 09:06:07 +02:00
parent 8d192445a7
commit bae103257c

View file

@ -613,8 +613,8 @@ export class MailMessageList extends AbstractViewRight {
AppUserStore.focusedState(Scope.MessageList);
}
let data = ko.dataFor(el),
el = eqs(event, '.e-paginator a');
let el = eqs(event, '.e-paginator a'),
data = ko.dataFor(el);
el && this.gotoPage(data);
eqs(event, '.checkboxCheckAll') && this.checkAll(!this.checkAll());