mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 15:08:28 +03:00
Fix: Can not view OpenPGP key (#1200)
This commit is contained in:
parent
0bbb2f14a4
commit
760d9e6243
2 changed files with 92 additions and 92 deletions
|
|
@ -10,7 +10,7 @@ import {AbstractViewNext} from 'Knoin/AbstractViewNext';
|
|||
|
||||
@popup({
|
||||
name: 'View/Popup/ViewOpenPgpKey',
|
||||
templateID: 'PopupsTwoFactorTest'
|
||||
templateID: 'PopupsViewOpenPgpKey'
|
||||
})
|
||||
class ViewOpenPgpKeyPopupView extends AbstractViewNext
|
||||
{
|
||||
|
|
@ -35,12 +35,12 @@ class ViewOpenPgpKeyPopupView extends AbstractViewNext
|
|||
}
|
||||
}
|
||||
|
||||
onShow(oOpenPgpKey) {
|
||||
onShow(openPgpKey) {
|
||||
this.clearPopup();
|
||||
|
||||
if (oOpenPgpKey)
|
||||
if (openPgpKey)
|
||||
{
|
||||
this.key(oOpenPgpKey.armor);
|
||||
this.key(openPgpKey.armor);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue