whitespace between links

This commit is contained in:
Zlatin Balevsky
2019-12-17 10:19:47 +00:00
parent 1c7253ea0a
commit 9fa7fa07b4

View File

@@ -350,11 +350,11 @@ class SenderForResult {
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() {