mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 03:29:20 +03:00
Bugfix: missing comma
This commit is contained in:
parent
fca464f0b2
commit
6c795d4ced
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ export class MessageModel extends AbstractModel {
|
|||
attachmentIconClass: () => FileInfo.getAttachmentsIconClass(this.attachments()),
|
||||
threadsLen: () => this.threads().length,
|
||||
isImportant: () => MessagePriority.High === this.priority(),
|
||||
hasAttachments: () => this.attachments().hasVisible()
|
||||
hasAttachments: () => this.attachments().hasVisible(),
|
||||
|
||||
isDeleted: () => this.flags().includes('\\deleted'),
|
||||
isUnseen: () => !this.flags().includes('\\seen') /* || this.flags().includes('\\unseen')*/,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue