diff --git a/src/public/app/services/content_renderer.ts b/src/public/app/services/content_renderer.ts
index c1ee2a416..14e42aced 100644
--- a/src/public/app/services/content_renderer.ts
+++ b/src/public/app/services/content_renderer.ts
@@ -199,8 +199,19 @@ function renderFile(entity: FNote | FAttachment, type: string, $renderedContent:
if (entityType === "notes" && "noteId" in entity) {
// TODO: we should make this available also for attachments, but there's a problem with "Open externally" support
// in attachment list
- const $downloadButton = $('');
- const $openButton = $('');
+ const $downloadButton = $(`
+
+ `);
+
+ const $openButton = $(`
+
+ `);
$downloadButton.on("click", () => openService.downloadFileNote(entity.noteId));
$openButton.on("click", () => openService.openNoteExternally(entity.noteId, entity.mime));