mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
Fixed email icon not showing for scheduled posts in posts list
This commit is contained in:
parent
829702db84
commit
875e495728
@ -23,7 +23,7 @@
|
||||
{{#link-to "editor.edit" this.post.displayName this.post.id class="permalink gh-list-data gh-post-list-status" title="Edit this post"}}
|
||||
{{#if this.isScheduled}}
|
||||
<span class="gh-content-status-draft gh-badge nowrap">
|
||||
Scheduled
|
||||
Scheduled
|
||||
</span>
|
||||
{{/if}}
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
|
||||
{{#if (and this.isPublished (not this.post.page))}}
|
||||
<span class="gh-content-status-published nowrap" title="Post has been sent by email">
|
||||
Published
|
||||
Published
|
||||
</span>
|
||||
{{/if}}
|
||||
{{/link-to}}
|
||||
@ -49,7 +49,7 @@
|
||||
{{/link-to}}
|
||||
|
||||
{{#link-to "editor.edit" this.post.displayName this.post.id class="permalink gh-list-data gh-post-list-email" title="Post has been sent by email"}}
|
||||
{{#if this.post.email}}
|
||||
{{#if (or this.post.email (and this.post.isScheduled this.post.sendEmailWhenPublished))}}
|
||||
{{svg-jar "email" class="w4 h4 fill-midgrey nudge-top--4"}}
|
||||
{{/if}}
|
||||
{{/link-to}}
|
Loading…
Reference in New Issue
Block a user