summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/admin/database.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 21:04:37 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 21:04:37 +0900
commitce858a676be7ec70566f186e1a061273975b04e1 (patch)
tree00269a9c0691707ed40c76c0e16f024c2ab7927b /packages/frontend/src/pages/admin/database.vue
parentfollow up of 1fd87bd2e46eb50f718f95f94d844fe694e43a53 (diff)
downloadmisskey-ce858a676be7ec70566f186e1a061273975b04e1.tar.gz
misskey-ce858a676be7ec70566f186e1a061273975b04e1.tar.bz2
misskey-ce858a676be7ec70566f186e1a061273975b04e1.zip
refactor(frontend): use PageWithHeader instead of MkStickyContainer+MkPageHeader combination
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 1d8803d8c1..6691142a64 100644
--- a/packages/frontend/src/pages/admin/database.vue
+++ b/packages/frontend/src/pages/admin/database.vue
@@ -4,8 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
-<MkStickyContainer>
- <template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
+<PageWithHeader :actions="headerActions" :tabs="headerTabs">
<MkSpacer :contentMax="800" :marginMin="16" :marginMax="32">
<FormSuspense v-slot="{ result: database }" :p="databasePromiseFactory">
<MkKeyValue v-for="table in database" :key="table[0]" oneline style="margin: 1em 0;">
@@ -14,7 +13,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</MkKeyValue>
</FormSuspense>
</MkSpacer>
-</MkStickyContainer>
+</PageWithHeader>
</template>
<script lang="ts" setup>