diff --git a/src/popup/index.html b/src/popup/index.html index f8b423a..396d16c 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -220,7 +220,7 @@
Recent Transactions diff --git a/src/popup/views/home.js b/src/popup/views/home.js index d558445..8f722c2 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -145,7 +145,7 @@ function renderHomeTxList(ctx) { const opacity = tx.isError ? " opacity:0.5;" : ""; const ago = escapeHtml(timeAgo(tx.timestamp)); const iso = escapeHtml(isoDate(tx.timestamp)); - html += `
`; + html += `
`; html += `
${ago}${dirLabel}${err}
`; html += `
${dot}${addrStr}${amountStr}
`; html += `
`; @@ -251,7 +251,7 @@ function render(ctx) { let html = ""; state.wallets.forEach((wallet, wi) => { - html += `
`; + html += `
`; html += `
`; html += `${wallet.name}`; if (wallet.type === "hd") {