diff --git a/src/components/admin/unit/damageReport/DamageReportListItem.vue b/src/components/admin/unit/damageReport/DamageReportListItem.vue index a838973..4c58268 100644 --- a/src/components/admin/unit/damageReport/DamageReportListItem.vue +++ b/src/components/admin/unit/damageReport/DamageReportListItem.vue @@ -2,11 +2,22 @@

- {{ damageReport.related.name }} + {{ damageReport?.related?.name ?? "Ohne Zuordnung" }} + ({{ damageReport.related.code }})

+
+
+ +
+
+ +
+
+ +
+
-

Code: {{ damageReport.related.code }}

Beschreibung: {{ damageReport.description }}

@@ -17,6 +28,7 @@ import { defineComponent, type PropType } from "vue"; import { mapState, mapActions } from "pinia"; import { useAbilityStore } from "@/stores/ability"; import type { DamageReportViewModel } from "@/viewmodels/admin/unit/damageReport.models"; +import { MapPinIcon, PhotoIcon, UserIcon } from "@heroicons/vue/24/outline";