aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:00:53 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:00:53 +0000
commitdc611dffdbf8f24c10caa7651651efbff1acfe67 (patch)
tree9231422f2f448204685c69984a2859a0f014dcab /src/components/attachment/attachment.js
parent0741d1d93d1ff40489747c0dcfd652be8bf6e2ab (diff)
parent245addb530f04510d072531eef45e7f30c79e237 (diff)
Merge branch 'flash-support' into 'develop'
Flash support See merge request pleroma/pleroma-fe!1380
Diffstat (limited to 'src/components/attachment/attachment.js')
-rw-r--r--src/components/attachment/attachment.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js
index 5f5779a0..8849f501 100644
--- a/src/components/attachment/attachment.js
+++ b/src/components/attachment/attachment.js
@@ -1,4 +1,5 @@
import StillImage from '../still-image/still-image.vue'
+import Flash from '../flash/flash.vue'
import VideoAttachment from '../video_attachment/video_attachment.vue'
import nsfwImage from '../../assets/nsfw.png'
import fileTypeService from '../../services/file_type/file_type.service.js'
@@ -43,6 +44,7 @@ const Attachment = {
}
},
components: {
+ Flash,
StillImage,
VideoAttachment
},