[WO-290] Fix bug where plaintext mail body is not shown in outbox

This commit is contained in:
Felix Hammerl 2014-05-12 13:57:25 +02:00
parent 99edcee93b
commit c6a82b3442
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
<!-- Render text body as colored conversation in recursive text nodes -->
<div class="body"
ng-if="!html && (state.mailList.selected === undefined || (state.mailList.selected.encrypted === false && state.mailList.selected.body !== undefined) || (state.mailList.selected.encrypted === true && state.mailList.selected.decrypted === true))">
ng-if="!html && (state.mailList.selected === undefined || (!state.mailList.selected.encrypted && state.mailList.selected.body !== undefined) || (state.mailList.selected.encrypted === true && state.mailList.selected.decrypted === true))">
<div ng-include="'tpl/text-node.html'"
ng-if="node !== undefined"
ng-repeat="child in node.children track by $index"