diff options
| author | Henry Jameson <me@hjkos.com> | 2020-10-21 00:01:28 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-10-21 00:01:28 +0300 |
| commit | a50cd7e37dce6e95f2c3d6cc63c382af71a2926e (patch) | |
| tree | 84bd0314c503a8dd196a2b7312101d103aebc2b2 /src/components/status_content/status_content.js | |
| parent | 3cbaa0044943341fa4af4e4eb880649fc7eecda4 (diff) | |
remaining changes...
Diffstat (limited to 'src/components/status_content/status_content.js')
| -rw-r--r-- | src/components/status_content/status_content.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/status_content/status_content.js b/src/components/status_content/status_content.js index df095de3..a6f79d76 100644 --- a/src/components/status_content/status_content.js +++ b/src/components/status_content/status_content.js @@ -7,6 +7,24 @@ import fileType from 'src/services/file_type/file_type.service' import { processHtml } from 'src/services/tiny_post_html_processor/tiny_post_html_processor.service.js' import { mentionMatchesUrl, extractTagFromUrl } from 'src/services/matcher/matcher.service.js' import { mapGetters, mapState } from 'vuex' +import { library } from '@fortawesome/fontawesome-svg-core' +import { + faCircleNotch, + faFile, + faMusic, + faImage, + faLink, + faPollH +} from '@fortawesome/free-solid-svg-icons' + +library.add( + faCircleNotch, + faFile, + faMusic, + faImage, + faLink, + faPollH +) const StatusContent = { name: 'StatusContent', |
