diff options
| author | taehoon <th.dev91@gmail.com> | 2019-10-18 07:05:01 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-10-18 07:05:01 -0400 |
| commit | 348d6664eb07d4854ad4266873ad423091658187 (patch) | |
| tree | 8f6940c6c0706d3c678777f979c80d4805cf5a6d /src/components/media_modal/media_modal.js | |
| parent | 07ec18fe11a347f8cbad6b3e667dfc9d9f09c867 (diff) | |
refactor all kind of modals using the modal component
Diffstat (limited to 'src/components/media_modal/media_modal.js')
| -rw-r--r-- | src/components/media_modal/media_modal.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/media_modal/media_modal.js b/src/components/media_modal/media_modal.js index 992d7129..4832abda 100644 --- a/src/components/media_modal/media_modal.js +++ b/src/components/media_modal/media_modal.js @@ -1,11 +1,13 @@ import StillImage from '../still-image/still-image.vue' import VideoAttachment from '../video_attachment/video_attachment.vue' +import Modal from '../modal/modal.vue' import fileTypeService from '../../services/file_type/file_type.service.js' const MediaModal = { components: { StillImage, - VideoAttachment + VideoAttachment, + Modal }, computed: { showing () { |
