From a60e8b2311f3fef3d3edba51d91e307edae63c74 Mon Sep 17 00:00:00 2001 From: AnandaTon Date: Fri, 1 Sep 2023 17:50:43 +0700 Subject: [PATCH] Update Insignia.vue --- src/modules/04_registry/components/Insignia.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,