diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-10-16 03:45:09 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-10-16 03:45:09 +0900 |
| commit | 3a973aee69ca75462ec6f7523ea47ab1ff0f3a37 (patch) | |
| tree | 7536dfd03a107d7ed498b8c22b82287c5cd255fb | |
| parent | 11.34.0 (diff) | |
| download | sharkey-3a973aee69ca75462ec6f7523ea47ab1ff0f3a37.tar.gz sharkey-3a973aee69ca75462ec6f7523ea47ab1ff0f3a37.tar.bz2 sharkey-3a973aee69ca75462ec6f7523ea47ab1ff0f3a37.zip | |
みつけるの微修正 (#5506)
* default instance name
* とりあえずリモートの人気のユーザーはリモートのみにするように
| -rw-r--r-- | src/client/app/common/views/pages/explore.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/pages/explore.vue b/src/client/app/common/views/pages/explore.vue index fe844936f8..b4a4e1d502 100644 --- a/src/client/app/common/views/pages/explore.vue +++ b/src/client/app/common/views/pages/explore.vue @@ -1,7 +1,7 @@ <template> <div> <div class="localfedi7" v-if="meta && stats && tag == null" :style="{ backgroundImage: meta.bannerUrl ? `url(${meta.bannerUrl})` : null }"> - <header>{{ $t('explore', { host: meta.name }) }}</header> + <header>{{ $t('explore', { host: meta.name || 'Misskey' }) }}</header> <div>{{ $t('users-info', { users: num(stats.originalUsersCount) }) }}</div> </div> @@ -91,7 +91,7 @@ export default Vue.extend({ } }, popularUsersF: { endpoint: 'users', limit: 10, params: { state: 'alive', - origin: 'combined', + origin: 'remote', sort: '+follower', } }, recentlyUpdatedUsersF: { endpoint: 'users', limit: 10, params: { |