mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Bugfix: PGP sign option failed to be visible due to new "from" feature of v2.12.2 #202
This commit is contained in:
parent
0ec49d0802
commit
0256f05e7d
1 changed files with 2 additions and 2 deletions
|
|
@ -230,8 +230,6 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
currentIdentity: IdentityUserStore()[0]
|
||||
});
|
||||
|
||||
this.from(IdentityUserStore()[0].formattedName());
|
||||
|
||||
// this.to.subscribe((v) => console.log(v));
|
||||
|
||||
// Used by ko.bindingHandlers.emailsTags
|
||||
|
|
@ -373,6 +371,8 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
skipCommand: self => self.canBeSentOrSaved(),
|
||||
contactsCommand: self => self.allowContacts
|
||||
});
|
||||
|
||||
this.from(IdentityUserStore()[0].formattedName());
|
||||
}
|
||||
|
||||
async getMessageRequestParams(sSaveFolder, draft)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue