We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 409f2ad commit 463d454Copy full SHA for 463d454
extension/js/content_scripts/webmail/thunderbird/thunderbird-element-replacer.ts
@@ -129,7 +129,7 @@ export class ThunderbirdElementReplacer extends WebmailElementReplacer {
129
.on('click', async () => {
130
await this.downloadThunderbirdAttachmentHandler(attachment);
131
})
132
- .prepend($('<img>').attr('src', messenger.runtime.getURL('/img/svgs/download-link.svg'))); // xss-safe-value
+ .append($('<img>').attr('src', messenger.runtime.getURL('/img/svgs/download-link.svg'))); // xss-safe-value
133
attachmentHtmlRoot.append(attachmentFileTypeIcon); // xss-escaped
134
attachmentHtmlRoot.append(attachmentFilename); // xss-safe-value
135
attachmentHtmlRoot.append(attachmentDownloadBtn); // xss-safe-value
0 commit comments