848b2d82a1
no issue This pull request removes the `suppressionList` feature flag and all its dependencies from the codebase. It makes the suppression list feature the default and consistent behavior for all email events and newsletters. It simplifies the UI, logic, and data related to email events and newsletters. It affects several files in the `ghost/admin/app`, `ghost/core/core`, and `ghost/members-api` directories.
34 lines
1.0 KiB
Handlebars
34 lines
1.0 KiB
Handlebars
<div
|
|
class="gh-feedback-events-feed"
|
|
{{on "mouseleave" this.onMouseleave}}
|
|
>
|
|
<div class="gh-feedback-events-feed-container">
|
|
<EmberChart
|
|
@type='doughnut'
|
|
@data={{this.chartData}}
|
|
@options={{this.chartOptions}}
|
|
@height={{220}}
|
|
@width={{220}}
|
|
/>
|
|
</div>
|
|
|
|
<div
|
|
class="gh-feedback-events-tooltip"
|
|
id="gh-feedback-events-tooltip"
|
|
{{did-insert this.onTooltipInsert}}
|
|
>
|
|
<div>
|
|
<div class="gh-feedback-events-tooltip-body">
|
|
<span
|
|
class="gh-feedback-events-tooltip-badge"
|
|
style={{html-safe (concat "background-color: " this.tooltipData.color)}}
|
|
></span>
|
|
<span class="gh-feedback-events-tooltip-info">{{this.tooltipData.value}}</span>
|
|
<span>{{this.tooltipData.percent}}%</span>
|
|
</div>
|
|
|
|
<span class="gh-feedback-events-tooltip-metric">{{this.tooltipData.label}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|