mirror of
https://github.com/moparisthebest/mail
synced 2024-12-23 15:58:49 -05:00
[WO-585] Fix bug: Show content if only html is present
This commit is contained in:
parent
72092b3943
commit
a2bc734ba6
@ -54,7 +54,7 @@
|
||||
</div><!--/.working-wrapper-->
|
||||
|
||||
<div class="signature-status"
|
||||
ng-show="state.mailList.selected.body && state.mailList.selected.signed && !state.mailList.selected.signaturesValid">
|
||||
ng-show="(state.mailList.selected.body || state.mailList.selected.html) && state.mailList.selected.signed && !state.mailList.selected.signaturesValid">
|
||||
<p>Invalid PGP signature. This message could have been tampered with.</p>
|
||||
</div>
|
||||
|
||||
@ -64,7 +64,7 @@
|
||||
|
||||
<!-- Render html body in sandboxed iframe -->
|
||||
<div class="frame-wrapper"
|
||||
ng-show="state.mailList.selected && (!state.mailList.selected.encrypted && state.mailList.selected.body) || (state.mailList.selected.encrypted && state.mailList.selected.decrypted)">
|
||||
ng-show="state.mailList.selected && (!state.mailList.selected.encrypted && (state.mailList.selected.body || state.mailList.selected.html)) || (state.mailList.selected.encrypted && state.mailList.selected.decrypted)">
|
||||
<iframe sandbox="allow-popups allow-scripts" src="tpl/read-sandbox.html"
|
||||
frame-load>
|
||||
</iframe>
|
||||
|
Loading…
Reference in New Issue
Block a user