diff --git a/webui/src/main/js/trustLists.js b/webui/src/main/js/trustLists.js index d5554ac4..33f349a0 100644 --- a/webui/src/main/js/trustLists.js +++ b/webui/src/main/js/trustLists.js @@ -42,7 +42,9 @@ class Persona { getMapping() { var mapping = new Map() - var userHtml = this.user + "
" + this.getTrustActions().join(" ") + "
" + var userHtml = this.user + "
" + this.getTrustActions().join(" ") + "
" + userHtml += "
" + userHtml += "
" mapping.set("Trusted User", userHtml) mapping.set("Distrusted User", userHtml) mapping.set("Reason", this.reason) @@ -52,13 +54,11 @@ class Persona { } getTrustBlock() { - return "" + this.getTrustLink() + "" + - "" + return "" + this.getTrustLink() + "" } getDistrustBlock() { - return "" + this.getDistrustLink() + "" + - "" + return "" + this.getDistrustLink() + "" } getTrustLink() {