diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-30 15:32:11 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-30 15:32:11 +0900 |
| commit | 6f3e64f13e146ba3bf9b97f0444c7518d98195ab (patch) | |
| tree | 70c3b6c784243fa9033aa0f87a55db0067377913 /packages/client/src/pages/instance-info.vue | |
| parent | enhance(client): show confirm dialog when logout (diff) | |
| download | misskey-6f3e64f13e146ba3bf9b97f0444c7518d98195ab.tar.gz misskey-6f3e64f13e146ba3bf9b97f0444c7518d98195ab.tar.bz2 misskey-6f3e64f13e146ba3bf9b97f0444c7518d98195ab.zip | |
chore(client): tweak client
Diffstat (limited to 'packages/client/src/pages/instance-info.vue')
| -rw-r--r-- | packages/client/src/pages/instance-info.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/client/src/pages/instance-info.vue b/packages/client/src/pages/instance-info.vue index b72fcb1528..83f3354df1 100644 --- a/packages/client/src/pages/instance-info.vue +++ b/packages/client/src/pages/instance-info.vue @@ -143,12 +143,11 @@ let suspended = $ref(false); let isBlocked = $ref(false); const usersPagination = { - endpoint: 'admin/show-users' as const, + endpoint: iAmModerator ? 'admin/show-users' : 'users' as const, limit: 10, params: { sort: '+updatedAt', state: 'all', - origin: 'remote', hostname: props.host, }, offsetMode: true, |