diff --git a/src/modules/04_registry/components/Insignia.vue b/src/modules/04_registry/components/Insignia.vue index 51aebe218..57251332b 100644 --- a/src/modules/04_registry/components/Insignia.vue +++ b/src/modules/04_registry/components/Insignia.vue @@ -946,10 +946,10 @@ const fetchData = async () => { .then((res) => { let data = res.data.result; rows.value = []; - data.map((e: ResponseObject) => { + data.map((e: any) => { rows.value.push({ id: e.id, - insignia: e.insignia, + insignia: e.insignia == null ? null : e.insignia.name, insigniaId: e.insigniaId, insigniaType: e.insigniaType, year: e.year,