From 45b3772ddc3cc4fc0168e06c63da771e97c05332 Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Tue, 27 Sep 2022 13:01:18 +0200 Subject: [PATCH] Made the dashes lighter refs https://github.com/TryGhost/Team/issues/1986 --- .../source-attribution-table.hbs | 48 +++++++++++-------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/ghost/admin/app/components/member-attribution/source-attribution-table.hbs b/ghost/admin/app/components/member-attribution/source-attribution-table.hbs index 5b5c0a7d2d..32d255431f 100644 --- a/ghost/admin/app/components/member-attribution/source-attribution-table.hbs +++ b/ghost/admin/app/components/member-attribution/source-attribution-table.hbs @@ -25,23 +25,27 @@ {{sourceData.source}}
- - {{#if sourceData.signups}} + {{#if sourceData.signups}} + {{format-number sourceData.signups}} - {{else}} + + {{else}} + — - {{/if}} - + + {{/if}}
{{#if this.membersUtils.paidMembersEnabled}}
- - {{#if sourceData.paidConversions}} + {{#if sourceData.paidConversions}} + {{format-number sourceData.paidConversions}} - {{else}} + + {{else}} + — - {{/if}} - + + {{/if}}
{{/if}} @@ -57,23 +61,27 @@ {{on "click" this.openAllSources}}>(see all)
- - {{#if this.others.signups}} + {{#if this.others.signups}} + {{format-number this.others.signups}} - {{else}} + + {{else}} + — - {{/if}} - + + {{/if}}
{{#if this.membersUtils.paidMembersEnabled}}
- - {{#if this.others.paidConversions}} + {{#if this.others.paidConversions}} + {{format-number this.others.paidConversions}} - {{else}} + + {{else}} + — - {{/if}} - + + {{/if}}
{{/if}}