diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-24 13:08:48 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-24 13:08:48 +0900 |
| commit | abc082f7c06bdefe2eae9d7493757e770897d151 (patch) | |
| tree | 85004f3d25e2523ea96902814c9e97c5f207ace7 /src/client/app/desktop | |
| parent | 4.10.0 (diff) | |
| download | sharkey-abc082f7c06bdefe2eae9d7493757e770897d151.tar.gz sharkey-abc082f7c06bdefe2eae9d7493757e770897d151.tar.bz2 sharkey-abc082f7c06bdefe2eae9d7493757e770897d151.zip | |
リモートフォローフォームを実装するなど
Diffstat (limited to 'src/client/app/desktop')
| -rw-r--r-- | src/client/app/desktop/script.ts | 4 | ||||
| -rw-r--r-- | src/client/app/desktop/views/pages/user/user.vue | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts index beb358c7ee..297100e0e0 100644 --- a/src/client/app/desktop/script.ts +++ b/src/client/app/desktop/script.ts @@ -36,6 +36,7 @@ import MkSearch from './views/pages/search.vue'; import MkTag from './views/pages/tag.vue'; import MkReversi from './views/pages/reversi.vue'; import MkShare from './views/pages/share.vue'; +import MkFollow from '../common/views/pages/follow.vue'; /** * init @@ -67,7 +68,8 @@ init(async (launch) => { { path: '/reversi', component: MkReversi }, { path: '/reversi/:game', component: MkReversi }, { path: '/@:user', component: MkUser }, - { path: '/notes/:note', component: MkNote } + { path: '/notes/:note', component: MkNote }, + { path: '/authorize-follow', component: MkFollow } ] }); diff --git a/src/client/app/desktop/views/pages/user/user.vue b/src/client/app/desktop/views/pages/user/user.vue index 0337befdbd..fc5c900037 100644 --- a/src/client/app/desktop/views/pages/user/user.vue +++ b/src/client/app/desktop/views/pages/user/user.vue @@ -1,6 +1,6 @@ <template> <mk-ui> - <div class="zwwan0di1v4356rmdbjmwnn32tptpdp2" v-if="!fetching" :data-darkmode="$store.state.device.darkmode"> + <div class="xygkxeaeontfaokvqmiblezmhvhostak" v-if="!fetching" :data-darkmode="$store.state.device.darkmode"> <div class="is-suspended" v-if="user.isSuspended">%fa:exclamation-triangle% %i18n:@is-suspended%</div> <div class="is-remote" v-if="user.host != null">%fa:exclamation-triangle% %i18n:@is-remote%<a :href="user.url || user.uri" target="_blank">%i18n:@view-remote%</a></div> <main> @@ -149,10 +149,10 @@ root(isDark) i color #ccc -.zwwan0di1v4356rmdbjmwnn32tptpdp2[data-darkmode] +.xygkxeaeontfaokvqmiblezmhvhostak[data-darkmode] root(true) -.zwwan0di1v4356rmdbjmwnn32tptpdp2:not([data-darkmode]) +.xygkxeaeontfaokvqmiblezmhvhostak:not([data-darkmode]) root(false) </style> |