Ghost/ghost/admin/app/components/gh-email-preview-link.hbs
Kevin Ansfield 6dc733ae3a Fixed <GhEmailPreviewLink> default text and whitespace
refs 21f2a58a8a

- passed in arg is `@data` not `@email` because it can be an email or post object
- added `~` handlebars syntax to collapse white-space so links can be surrounded by other chars without spaces being visible, eg `"<GhEmailPreviewLink />"`
2022-01-25 13:27:58 +00:00

7 lines
198 B
Handlebars

<a href="" role="button" {{on "click" this.openPreview}} ...attributes>
{{~#if (has-block)~}}
{{~yield~}}
{{else}}
{{~or @data.subject @data.email.subject~}}
{{/if}}
</a>