Updated subtitle logic (#20876)

It was previously not displaying the correct text for when a post is
published + emailed. That's solved now.
This commit is contained in:
Daniël van der Winden 2024-08-29 12:41:02 +02:00 committed by GitHub
parent 3e25370ebe
commit 42009eb9ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@
</h1> </h1>
</header> </header>
{{#if (not (and this.post.isPublished (not this.post.emailOnly)))}} {{#if (or (not this.post.isPublished) this.post.emailOnly (or this.post.hasEmail this.post.willEmail))}}
<div class="modal-body email"> <div class="modal-body email">
{{#if this.post.isSent}} {{#if this.post.isSent}}
It It
@ -34,7 +34,13 @@
Your {{this.post.displayName}} Your {{this.post.displayName}}
{{/if}} {{/if}}
{{if this.post.isScheduled "will be" "was"}} {{if this.post.isScheduled "will be" "was"}}
{{if this.post.emailOnly "sent to" (if this.post.willEmail "published on your site, and sent to" "published on your site")}} {{#if this.post.emailOnly}}
sent to
{{else if (or this.post.hasEmail this.post.willEmail)}}
published on your site and sent to
{{else}}
published on your site
{{/if}}
{{#if (or this.post.hasEmail this.post.willEmail)}} {{#if (or this.post.hasEmail this.post.willEmail)}}
{{#let (members-count-fetcher query=(hash filter=this.post.fullRecipientFilter)) as |countFetcher|}} {{#let (members-count-fetcher query=(hash filter=this.post.fullRecipientFilter)) as |countFetcher|}}