From f8d842add8fd0b8c45db41599458c3eba03887b5 Mon Sep 17 00:00:00 2001 From: good-karma <feruz@esteem.app> Date: Wed, 28 Oct 2020 14:21:00 -0400 Subject: [PATCH] Esteem to Ecency ExplorePost.jsx --- src/app/components/modules/ExplorePost.jsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/components/modules/ExplorePost.jsx b/src/app/components/modules/ExplorePost.jsx index 4bbb692c9..3c1c14876 100644 --- a/src/app/components/modules/ExplorePost.jsx +++ b/src/app/components/modules/ExplorePost.jsx @@ -23,6 +23,7 @@ class ExplorePost extends Component { this.Hiveblocks = this.Hiveblocks.bind(this); this.Hivedb = this.Hivedb.bind(this); this.Peakd = this.Peakd.bind(this); + this.Ecency = this.Ecency.bind(this); } Hiveblocks() { @@ -37,8 +38,8 @@ class ExplorePost extends Component { serverApiRecordEvent('PeakdView', this.props.permlink); } - Esteem() { - serverApiRecordEvent('EsteemView', this.props.permlink); + Ecency() { + serverApiRecordEvent('EcencyView', this.props.permlink); } onCopy() { @@ -59,7 +60,7 @@ class ExplorePost extends Component { const hiveblocks = 'https://hiveblocks.com' + link; const hivedb = 'https://hive-db.com' + link; const peakd = 'https://peakd.com' + link; - const esteem = 'https://esteem.app' + link; + const ecency = 'https://ecency.com' + link; const hiveblog = 'https://hive.blog' + link; const hiveblogMd = '[' + title + '](https://hive.blog' + link + ')'; let text = @@ -140,12 +141,12 @@ class ExplorePost extends Component { </li> <li> <a - href={esteem} - onClick={this.Esteem} + href={ecency} + onClick={this.Ecency} target="_blank" rel="noopener noreferrer" > - esteem.app <Icon name="extlink" /> + ecency.com <Icon name="extlink" /> </a> </li> </ul> -- GitLab