Show "email failed" state in posts list

This commit is contained in:
Kevin Ansfield 2019-11-20 23:37:37 +00:00
parent 30b23f2a7c
commit 535f50ad9f

View File

@ -44,8 +44,8 @@
{{/if}} {{/if}}
{{#if (or this.post.email (and this.post.isScheduled this.post.sendEmailWhenPublished))}} {{#if (or this.post.email (and this.post.isScheduled this.post.sendEmailWhenPublished))}}
<span data-tooltip="Sent by email" class="gh-content-emailed"> <span data-tooltip={{if (eq this.post.email.status "failed") "Sending failed" "Sent by email"}} class="gh-content-emailed">
{{svg-jar "send-email" class="stroke-midgrey"}} {{svg-jar "send-email" class=(if (eq this.post.email.status "failed") "stroke-red" "stroke-midgrey")}}
</span> </span>
{{/if}} {{/if}}
</div> </div>