summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/admin/database.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-09-01 16:23:05 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-09-01 16:23:05 +0900
commit4a0e9686625a399529879ea92f51d93bd7204340 (patch)
tree8bb8750ba5993e9b23df659d19b6be837c826c35 /packages/frontend/src/pages/admin/database.vue
parentUpdate misskey-js.api.md (diff)
downloadmisskey-4a0e9686625a399529879ea92f51d93bd7204340.tar.gz
misskey-4a0e9686625a399529879ea92f51d93bd7204340.tar.bz2
misskey-4a0e9686625a399529879ea92f51d93bd7204340.zip
refactor
Diffstat (limited to 'packages/frontend/src/pages/admin/database.vue')
-rw-r--r--packages/frontend/src/pages/admin/database.vue5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/admin/database.vue b/packages/frontend/src/pages/admin/database.vue
index d51f43c098..f41967d3bd 100644
--- a/packages/frontend/src/pages/admin/database.vue
+++ b/packages/frontend/src/pages/admin/database.vue
@@ -6,19 +6,18 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<PageWithHeader :actions="headerActions" :tabs="headerTabs">
<div class="_spacer" style="--MI_SPACER-w: 800px; --MI_SPACER-min: 16px; --MI_SPACER-max: 32px;">
- <FormSuspense v-slot="{ result: database }" :p="databasePromiseFactory">
+ <MkSuspense v-slot="{ result: database }" :p="databasePromiseFactory">
<MkKeyValue v-for="table in database" :key="table[0]" oneline style="margin: 1em 0;">
<template #key>{{ table[0] }}</template>
<template #value>{{ bytes(table[1].size) }} ({{ number(table[1].count) }} recs)</template>
</MkKeyValue>
- </FormSuspense>
+ </MkSuspense>
</div>
</PageWithHeader>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
-import FormSuspense from '@/components/form/suspense.vue';
import MkKeyValue from '@/components/MkKeyValue.vue';
import { misskeyApi } from '@/utility/misskey-api.js';
import bytes from '@/filters/bytes.js';