mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 14:26:18 +08:00
Bugfix: flagParent failed due to my change for #1248
This commit is contained in:
parent
a25350aa60
commit
396caabdaa
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ export class MailMessageList extends AbstractViewRight {
|
||||||
|
|
||||||
this.selector.on('click', (event, currentMessage) => {
|
this.selector.on('click', (event, currentMessage) => {
|
||||||
const el = event.target;
|
const el = event.target;
|
||||||
if (el.closest('.flagparent')) {
|
if (el.closest('.flagParent')) {
|
||||||
if (currentMessage) {
|
if (currentMessage) {
|
||||||
const checked = MessagelistUserStore.listCheckedOrSelected();
|
const checked = MessagelistUserStore.listCheckedOrSelected();
|
||||||
listAction(
|
listAction(
|
||||||
|
|
Loading…
Reference in a new issue