diff --git a/frontend/src/business/components/api/definition/components/list/ApiList.vue b/frontend/src/business/components/api/definition/components/list/ApiList.vue index 183fca236f..c42137f85b 100644 --- a/frontend/src/business/components/api/definition/components/list/ApiList.vue +++ b/frontend/src/business/components/api/definition/components/list/ApiList.vue @@ -279,7 +279,9 @@ export default { this.unSelection = response.data.listObject.map(s => s.id); this.tableData.forEach(row => { - row.showTags = JSON.parse(row.tags); + if (row.tags) { + row.showTags = JSON.parse(); + } }) }); }