Ghost/ghost/admin/app/templates/posts/analytics.hbs
Simon Backx 22fe1c01de
Added conversions count and separate analytics page (#15637)
fixes https://github.com/TryGhost/Team/issues/2084

- When audience feedback is enabled, we use a single 'conversions' count instead of having separate ones for signups and paid conversions.
- The analytics component is separated so we can change it without breaking the existing page.
2022-10-17 13:02:39 +02:00

6 lines
148 B
Handlebars

{{#if (feature 'audienceFeedback') }}
<Posts::Analytics @post={{this.post}} />
{{else}}
<Posts::OldAnalytics @post={{this.post}} />
{{/if}}