space between trust action links

This commit is contained in:
Zlatin Balevsky
2019-12-15 16:42:03 +00:00
parent 8b341bb125
commit c607560cb8

View File

@@ -56,11 +56,11 @@ class Sender {
getTrustLinks() {
if (this.trust == "NEUTRAL")
return this.getTrustLink() + this.getDistrustLink()
return " " + this.getTrustLink() + " " + this.getDistrustLink()
else if (this.trust == "TRUSTED")
return this.getNeutralLink() + this.getDistrustLink()
return " " + this.getNeutralLink() + " " + this.getDistrustLink()
else
return this.getTrustLink() + this.getNeutralLink()
return " " + this.getTrustLink() + " " + this.getNeutralLink()
}
getTrustLink() {