mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 15:08:28 +03:00
Bugfix: message threaded mode was broken (knockout computable requires call to observable)
This commit is contained in:
parent
dade7756f8
commit
e2d6528bf5
2 changed files with 4 additions and 5 deletions
|
|
@ -86,7 +86,7 @@ export class MessageModel extends AbstractModel {
|
|||
|
||||
this.addComputables({
|
||||
attachmentIconClass: () => FileInfo.getCombinedIconClass(this.hasAttachments() ? this.attachmentsSpecData() : []),
|
||||
threadsLen: () => this.threads.length,
|
||||
threadsLen: () => this.threads().length,
|
||||
isImportant: () => MessagePriority.High === this.priority(),
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue