Make public report card name consistent with other components
This commit is contained in:
parent
63ebe382b6
commit
9c392e5791
3 changed files with 5 additions and 5 deletions
|
|
@ -58,7 +58,7 @@
|
|||
</div>
|
||||
|
||||
<div v-if="selectedCommunication" class="h-100 d-flex flex-column">
|
||||
<PublicreportCard
|
||||
<PublicReportCard
|
||||
v-if="selectedCommunication?.public_report"
|
||||
:report="selectedCommunication?.public_report"
|
||||
@viewImage="openPhotoViewer"
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
<script setup lang="ts">
|
||||
import { computed } from "vue";
|
||||
import MapMultipoint from "@/components/MapMultipoint.vue";
|
||||
import PublicreportCard from "@/components/PublicreportCard.vue";
|
||||
import PublicReportCard from "@/components/PublicReportCard.vue";
|
||||
import TimeRelative from "@/components/TimeRelative.vue";
|
||||
import type { Marker } from "@/types";
|
||||
import type { Bounds, Communication, User } from "@/type/api";
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@
|
|||
<FlyoverPoolCard :location="signal.location" :markers="[]" />
|
||||
</div>
|
||||
<div v-else-if="signal.type == 'publicreport nuisance' && signal.report">
|
||||
<PublicreportCard :report="signal.report" />
|
||||
<PublicReportCard :report="signal.report" />
|
||||
</div>
|
||||
<div v-else-if="signal.type == 'publicreport water' && signal.report">
|
||||
<PublicreportCard :report="signal.report" />
|
||||
<PublicReportCard :report="signal.report" />
|
||||
</div>
|
||||
<div v-else>
|
||||
<p>No report or pool</p>
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import FlyoverPoolCard from "@/components/FlyoverPoolCard.vue";
|
||||
import PublicreportCard from "@/components/PublicreportCard.vue";
|
||||
import PublicReportCard from "@/components/PublicReportCard.vue";
|
||||
import TimeRelative from "@/components/TimeRelative.vue";
|
||||
import { formatAddressShort } from "@/format";
|
||||
import { Signal } from "@/type/api";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue