space out trust links in search view

pull/34/head
Zlatin Balevsky 2019-12-16 01:49:59 +00:00
parent d87bec927d
commit 58137d11d1
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class Sender {
mapping.set("Sender", this.getSenderLink()) mapping.set("Sender", this.getSenderLink())
mapping.set("Results", this.results) mapping.set("Results", this.results)
var trustHtml = this.trust + this.getTrustLinks() var trustHtml = "<table><tr><td>" + this.trust + "</td><td><p align='right'>" + this.getTrustLinks() + "</p></td></tr></table>"
mapping.set("Trust", trustHtml) mapping.set("Trust", trustHtml)
mapping.set("Browse", this.getBrowseBlock()) mapping.set("Browse", this.getBrowseBlock())
@ -345,7 +345,7 @@ class SenderForResult {
} }
getTrustBlock() { getTrustBlock() {
return this.trust + this.getTrustLinks() return "<table><tr><td>" + this.trust +"</td><td><p align='right'>" + this.getTrustLinks() + "</p></td></tr></table>"
} }
getTrustLinks() { getTrustLinks() {