1
0

Add some text for when you haven't filed any reports (#1304)

* Add a message for no viewable reports.

* implement proposal
This commit is contained in:
chaos
2023-08-18 21:55:16 +03:00
committed by GitHub
parent f453dff438
commit fbb50d8fb6
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@
:auth="auth"
class="universal-card recessed"
/>
<p v-if="reports.length === 0">You don't have any active reports.</p>
</template>
<script setup>
import Chips from '~/components/ui/Chips.vue'

View File

@@ -1,7 +1,7 @@
<template>
<div>
<section class="universal-card">
<h2>Reports you've filed</h2>
<h2>Reports</h2>
<ReportsList :auth="auth" />
</section>
</div>