mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
No group per day for thread #445
This commit is contained in:
parent
f2b8719223
commit
c522daf866
1 changed files with 5 additions and 1 deletions
|
|
@ -146,7 +146,11 @@ export class MailMessageList extends AbstractViewRight {
|
|||
|
||||
mobileCheckedStateHide: () => ThemeStore.isMobile() ? !MessagelistUserStore.hasChecked() : 1,
|
||||
|
||||
listPerDay: () => SettingsUserStore.listPerDay() && 'DATE' == (FolderUserStore.sortMode() || 'DATE'),
|
||||
listPerDay: () => {
|
||||
let uid = MessagelistUserStore.threadUid(),
|
||||
sort = FolderUserStore.sortMode() || 'DATE';
|
||||
return SettingsUserStore.listPerDay() && 'DATE' == sort && !uid;
|
||||
},
|
||||
|
||||
listByDay: () => {
|
||||
let list = [], current, today = Ymd(new Date()),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue