diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-20 13:38:48 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-20 13:38:48 +0900 |
| commit | daff0977cb2824536880e27fea38728a100ece77 (patch) | |
| tree | 0dcd52f865030da5c283fe5147a9532a1db2c0e8 /src/client/app/mobile | |
| parent | Fix bug (diff) | |
| download | misskey-daff0977cb2824536880e27fea38728a100ece77.tar.gz misskey-daff0977cb2824536880e27fea38728a100ece77.tar.bz2 misskey-daff0977cb2824536880e27fea38728a100ece77.zip | |
Resolve #747
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/pages/user/index.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/user/index.vue b/src/client/app/mobile/views/pages/user/index.vue index 57d9d2d812..c2c38f9886 100644 --- a/src/client/app/mobile/views/pages/user/index.vue +++ b/src/client/app/mobile/views/pages/user/index.vue @@ -23,6 +23,7 @@ </div> <div class="description"> <mfm v-if="user.description" :text="user.description" :is-note="false" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/> + <x-integrations :user="user" style="margin:16px 0;"/> </div> <div class="fields" v-if="user.fields"> <dl class="field" v-for="(field, i) in user.fields" :key="i"> @@ -86,11 +87,13 @@ import Progress from '../../../../common/scripts/loading'; import XUserMenu from '../../../../common/views/components/user-menu.vue'; import XHome from './home.vue'; import { getStaticImageUrl } from '../../../../common/scripts/get-static-image-url'; +import XIntegrations from '../../../../common/views/components/integrations.vue'; export default Vue.extend({ i18n: i18n('mobile/views/pages/user.vue'), components: { - XHome + XHome, + XIntegrations }, data() { return { |