Bugfix: PGP sign option failed to be visible due to new "from" feature of v2.12.2 #202

This commit is contained in:
the-djmaze 2022-04-21 00:07:18 +02:00
parent 0ec49d0802
commit 0256f05e7d

View file

@ -230,8 +230,6 @@ export class ComposePopupView extends AbstractViewPopup {
currentIdentity: IdentityUserStore()[0] currentIdentity: IdentityUserStore()[0]
}); });
this.from(IdentityUserStore()[0].formattedName());
// this.to.subscribe((v) => console.log(v)); // this.to.subscribe((v) => console.log(v));
// Used by ko.bindingHandlers.emailsTags // Used by ko.bindingHandlers.emailsTags
@ -373,6 +371,8 @@ export class ComposePopupView extends AbstractViewPopup {
skipCommand: self => self.canBeSentOrSaved(), skipCommand: self => self.canBeSentOrSaved(),
contactsCommand: self => self.allowContacts contactsCommand: self => self.allowContacts
}); });
this.from(IdentityUserStore()[0].formattedName());
} }
async getMessageRequestParams(sSaveFolder, draft) async getMessageRequestParams(sSaveFolder, draft)