summaryrefslogtreecommitdiffstats
path: root/webapp/components/file_attachment.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/file_attachment.jsx')
-rw-r--r--webapp/components/file_attachment.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/webapp/components/file_attachment.jsx b/webapp/components/file_attachment.jsx
index d5bbae4c9..a3dd7ff1d 100644
--- a/webapp/components/file_attachment.jsx
+++ b/webapp/components/file_attachment.jsx
@@ -206,7 +206,11 @@ class FileAttachment extends React.Component {
className='post-image__name'
rel='noopener noreferrer'
>
- <i className='glyphicon glyphicon-paperclip'/>{trimmedFilename}
+ <span
+ className='icon'
+ dangerouslySetInnerHTML={{__html: Constants.ATTACHMENT_ICON_SVG}}
+ />
+ {trimmedFilename}
</a>
</OverlayTrigger>
);