diff --git a/webui/src/main/js/search.js b/webui/src/main/js/search.js index c959f5f0..6602e1ab 100644 --- a/webui/src/main/js/search.js +++ b/webui/src/main/js/search.js @@ -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() {