Modrinth/pages/dashboard/reports.vue
chaos fbb50d8fb6
Add some text for when you haven't filed any reports (#1304)
* Add a message for no viewable reports.

* implement proposal
2023-08-18 11:55:16 -07:00

18 lines
356 B
Vue

<template>
<div>
<section class="universal-card">
<h2>Reports</h2>
<ReportsList :auth="auth" />
</section>
</div>
</template>
<script setup>
import ReportsList from '~/components/ui/report/ReportsList.vue'
const auth = await useAuth()
useHead({
title: 'Active reports - Modrinth',
})
</script>
<style lang="scss" scoped></style>