Update Insignia.vue

This commit is contained in:
AnandaTon 2023-09-01 17:50:43 +07:00
parent c7d68eec64
commit a60e8b2311

View file

@ -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,