mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 14:43:08 +03:00
Refined attribution data on member details page
refs https://github.com/TryGhost/Team/issues/1986 - hides referrer source on member details page if its `Created manually` as its not useful
This commit is contained in:
parent
c48df76d9b
commit
01249926d5
@ -5,10 +5,11 @@ export default class extends Component {
|
||||
@service settings;
|
||||
|
||||
get referrerSource() {
|
||||
return this.args.member.get('attribution')?.referrer_source;
|
||||
const source = this.args.member.get('attribution')?.referrer_source;
|
||||
return source === 'Created manually' ? null : source;
|
||||
}
|
||||
|
||||
get showAttribution() {
|
||||
return this.referrerSource || (this.args.member?.attribution?.url && this.args.member?.attribution?.title);
|
||||
return this.referrerSource || (this.args.member?.get('attribution')?.url && this.args.member?.get('attribution')?.title);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user