Use class heirarchy for different report types.

This commit is contained in:
Eli Ribble 2026-04-10 23:57:47 +00:00
parent 4735734404
commit 60eb6b9bbf
No known key found for this signature in database
13 changed files with 539 additions and 380 deletions

View file

@ -50,10 +50,10 @@
/>
</template>
<script setup lang="ts">
import type { Nuisance } from "@/type/api";
import type { PublicReportNuisance } from "@/type/api";
import ReportDetailEntry from "@/rmo/components/ReportDetailEntry.vue";
interface Props {
nuisance: Nuisance;
nuisance: PublicReportNuisance;
}
const props = defineProps<Props>();
</script>