Files
Modrinth-plus/apps/frontend/src/pages/hosting/manage/[id]/files.vue
2026-03-09 19:16:01 +00:00

18 lines
442 B
Vue

<script setup lang="ts">
import { injectModrinthServerContext, ServersManageFilesPage } from '@modrinth/ui'
const { server } = injectModrinthServerContext()
const flags = useFeatureFlags()
useHead({
title: computed(() => `Files - ${server.value?.name ?? 'Server'} - Modrinth`),
})
</script>
<template>
<ServersManageFilesPage
:show-debug-info="flags.advancedDebugInfo"
:show-refresh-button="flags.FilesRefreshButton"
/>
</template>