diff --git a/src/popup/views/transactionDetail.js b/src/popup/views/transactionDetail.js index 43d482d..1091005 100644 --- a/src/popup/views/transactionDetail.js +++ b/src/popup/views/transactionDetail.js @@ -44,11 +44,11 @@ function txAddressHtml(address, ensName, title) { const extLink = `${EXT_ICON}`; let html = `
${blockie}
`; if (title) { - html += `
${dot}${escapeHtml(title)}
`; + html += `
${escapeHtml(title)}
`; } if (ensName) { html += - `
${title ? "" : dot}` + + `
${dot}` + copyableHtml(ensName, "") + extLink + `
` + @@ -57,7 +57,7 @@ function txAddressHtml(address, ensName, title) { `
`; } else { html += - `
${title ? "" : dot}` + + `
${dot}` + copyableHtml(address, "break-all") + extLink + `
`;