summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/components
diff options
context:
space:
mode:
authorAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-02 13:41:25 +0900
committerAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-02 13:41:25 +0900
commit4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff (patch)
treea61bdf12f02acd1aaada86fdc95f4c6e21cf5d57 /src/client/app/mobile/views/components
parentIntroduce publishers directory (diff)
downloadsharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.tar.gz
sharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.tar.bz2
sharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.zip
Introduce renderers directory
Diffstat (limited to 'src/client/app/mobile/views/components')
-rw-r--r--src/client/app/mobile/views/components/notification-preview.vue2
-rw-r--r--src/client/app/mobile/views/components/notification.vue2
-rw-r--r--src/client/app/mobile/views/components/post-card.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/components/notification-preview.vue b/src/client/app/mobile/views/components/notification-preview.vue
index e7e1f75a87..77abd3c0ea 100644
--- a/src/client/app/mobile/views/components/notification-preview.vue
+++ b/src/client/app/mobile/views/components/notification-preview.vue
@@ -59,7 +59,7 @@
<script lang="ts">
import Vue from 'vue';
-import getPostSummary from '../../../../../get-post-summary';
+import getPostSummary from '../../../../../renderers/get-post-summary';
export default Vue.extend({
props: ['notification'],
diff --git a/src/client/app/mobile/views/components/notification.vue b/src/client/app/mobile/views/components/notification.vue
index d92b019447..d3e313756f 100644
--- a/src/client/app/mobile/views/components/notification.vue
+++ b/src/client/app/mobile/views/components/notification.vue
@@ -78,7 +78,7 @@
<script lang="ts">
import Vue from 'vue';
-import getPostSummary from '../../../../../get-post-summary';
+import getPostSummary from '../../../../../renderers/get-post-summary';
import getAcct from '../../../../../user/get-acct';
export default Vue.extend({
diff --git a/src/client/app/mobile/views/components/post-card.vue b/src/client/app/mobile/views/components/post-card.vue
index 893e4c3071..de42a01f78 100644
--- a/src/client/app/mobile/views/components/post-card.vue
+++ b/src/client/app/mobile/views/components/post-card.vue
@@ -14,7 +14,7 @@
<script lang="ts">
import Vue from 'vue';
-import summary from '../../../../../get-post-summary';
+import summary from '../../../../../renderers/get-post-summary';
import getAcct from '../../../../../user/get-acct';
export default Vue.extend({