diff --git a/frontend/src/business/components/api/automation/ApiAutomation.vue b/frontend/src/business/components/api/automation/ApiAutomation.vue index 5b3a1ab9f3..2075188f17 100644 --- a/frontend/src/business/components/api/automation/ApiAutomation.vue +++ b/frontend/src/business/components/api/automation/ApiAutomation.vue @@ -167,7 +167,10 @@ this.$refs.nodeTree.list(); } let row = data.listObject[0]; - row.tags = JSON.parse(row.tags); + if (row.tags.length > 0) { + row.tags = JSON.parse(row.tags); + } + this.editScenario(row); } });