Update Insignia.vue
This commit is contained in:
parent
c7d68eec64
commit
a60e8b2311
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue