diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-07 18:06:34 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-07 18:06:34 +0900 |
| commit | a279d502120533bab95b93dd4e80187f8c30fd34 (patch) | |
| tree | 2dac7c9ca103815d0f013ba1a66f73e2c8dbd6b1 /packages/client/src | |
| parent | chore(client): tweak ui (diff) | |
| download | misskey-a279d502120533bab95b93dd4e80187f8c30fd34.tar.gz misskey-a279d502120533bab95b93dd4e80187f8c30fd34.tar.bz2 misskey-a279d502120533bab95b93dd4e80187f8c30fd34.zip | |
chore(client): tweak ui
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/pages/instance-info.vue | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/client/src/pages/instance-info.vue b/packages/client/src/pages/instance-info.vue index b97ebb3e3d..d4d338b125 100644 --- a/packages/client/src/pages/instance-info.vue +++ b/packages/client/src/pages/instance-info.vue @@ -28,7 +28,7 @@ <template #label>Moderation</template> <FormSwitch v-model="suspended" class="_formBlock" @update:modelValue="toggleSuspend">{{ $ts.stopActivityDelivery }}</FormSwitch> <FormSwitch v-model="isBlocked" class="_formBlock" @update:modelValue="toggleBlock">{{ $ts.blockThisInstance }}</FormSwitch> - <MkButton @click="refreshMetadata">Refresh metadata</MkButton> + <MkButton @click="refreshMetadata"><i class="fas fa-refresh"></i> Refresh metadata</MkButton> </FormSection> <FormSection> @@ -56,8 +56,12 @@ <FormSection> <MkKeyValue oneline style="margin: 1em 0;"> - <template #key>Open Registrations</template> - <template #value>{{ instance.openRegistrations ? $ts.yes : $ts.no }}</template> + <template #key>Following (Pub)</template> + <template #value>{{ number(instance.followingCount) }}</template> + </MkKeyValue> + <MkKeyValue oneline style="margin: 1em 0;"> + <template #key>Followers (Sub)</template> + <template #value>{{ number(instance.followersCount) }}</template> </MkKeyValue> </FormSection> |