diff --git a/frontend/src/business/components/track/common/minder/TestCaseMinder.vue b/frontend/src/business/components/track/common/minder/TestCaseMinder.vue index bfa5f47835..9ac01dac5b 100644 --- a/frontend/src/business/components/track/common/minder/TestCaseMinder.vue +++ b/frontend/src/business/components/track/common/minder/TestCaseMinder.vue @@ -201,7 +201,11 @@ name: "TestCaseMinder", } if (node.data.type === 'issue') { getIssuesListById(node.data.id, this.projectId,this.workspaceId,(data) => { - data.customFields = JSON.parse(data.customFields); + if (data.customFields && data.customFields.toString().trim() !== '') { + data.customFields = JSON.parse(data.customFields); + } else { + data.customFields = null; + } this.$refs.issueEdit.open(data); }); }