summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-15 18:39:05 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-15 18:39:05 +0900
commitacfa2ef0288f80b6b972d41c582355306c28ebf5 (patch)
tree4fd07349317ff050e41e0fa7007c2fec4ccc1c3c /src/web
parentwip (diff)
downloadmisskey-acfa2ef0288f80b6b972d41c582355306c28ebf5.tar.gz
misskey-acfa2ef0288f80b6b972d41c582355306c28ebf5.tar.bz2
misskey-acfa2ef0288f80b6b972d41c582355306c28ebf5.zip
wip
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/common/views/components/index.ts2
-rw-r--r--src/web/app/desktop/views/components/index.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/common/views/components/index.ts b/src/web/app/common/views/components/index.ts
index 3d78e7f9c4..48e9e9db05 100644
--- a/src/web/app/common/views/components/index.ts
+++ b/src/web/app/common/views/components/index.ts
@@ -7,6 +7,7 @@ import nav from './nav.vue';
import postHtml from './post-html';
import reactionIcon from './reaction-icon.vue';
import time from './time.vue';
+import images from './images.vue';
Vue.component('mk-signin', signin);
Vue.component('mk-signup', signup);
@@ -15,3 +16,4 @@ Vue.component('mk-nav', nav);
Vue.component('mk-post-html', postHtml);
Vue.component('mk-reaction-icon', reactionIcon);
Vue.component('mk-time', time);
+Vue.component('mk-images', images);
diff --git a/src/web/app/desktop/views/components/index.ts b/src/web/app/desktop/views/components/index.ts
index 580c61592e..6b58215be5 100644
--- a/src/web/app/desktop/views/components/index.ts
+++ b/src/web/app/desktop/views/components/index.ts
@@ -20,7 +20,6 @@ import postFormWindow from './post-form-window.vue';
import repostFormWindow from './repost-form-window.vue';
import analogClock from './analog-clock.vue';
import ellipsisIcon from './ellipsis-icon.vue';
-import images from './images.vue';
import imagesImage from './images-image.vue';
import imagesImageDialog from './images-image-dialog.vue';
import notifications from './notifications.vue';
@@ -47,7 +46,6 @@ Vue.component('mk-post-form-window', postFormWindow);
Vue.component('mk-repost-form-window', repostFormWindow);
Vue.component('mk-analog-clock', analogClock);
Vue.component('mk-ellipsis-icon', ellipsisIcon);
-Vue.component('mk-images', images);
Vue.component('mk-images-image', imagesImage);
Vue.component('mk-images-image-dialog', imagesImageDialog);
Vue.component('mk-notifications', notifications);