From 3fbb8db02e5d96c4a410f12223691648981b5966 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Mon, 20 Nov 2023 18:42:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20[Bug]=E4=BF=AE=E6=94=B9=E5=B7=B2?= =?UTF-8?q?=E5=AD=98=E5=9C=A8=E6=95=B0=E6=8D=AE=E6=BA=90=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E6=97=B6=E6=8F=90=E7=A4=BA=E5=B7=B2=E5=AD=98=E5=9C=A8=E7=9B=B8?= =?UTF-8?q?=E5=90=8C=E9=85=8D=E7=BD=AE=E6=95=B0=E6=8D=AE=E6=BA=90=20#6267?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/views/system/datasource/DsAppForm.vue | 2 +- core/frontend/src/views/system/datasource/DsFormContent.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/frontend/src/views/system/datasource/DsAppForm.vue b/core/frontend/src/views/system/datasource/DsAppForm.vue index 29321f856f..e8e8d27af8 100644 --- a/core/frontend/src/views/system/datasource/DsAppForm.vue +++ b/core/frontend/src/views/system/datasource/DsAppForm.vue @@ -566,7 +566,7 @@ export default { this.tData.forEach(item => { if (item.id === this.form.type) { item.children.forEach(child => { - if (this.formType === 'modify' && child.id === this.form.id) { + if (child.id === this.form.id) { return } const configuration = JSON.parse(child.configuration) diff --git a/core/frontend/src/views/system/datasource/DsFormContent.vue b/core/frontend/src/views/system/datasource/DsFormContent.vue index 425602dcef..a99defa973 100644 --- a/core/frontend/src/views/system/datasource/DsFormContent.vue +++ b/core/frontend/src/views/system/datasource/DsFormContent.vue @@ -886,7 +886,7 @@ export default { this.tData.forEach((item) => { if (item.id === this.form.type) { item.children.forEach((child) => { - if (this.formType === 'modify' && child.id === this.form.id) { + if (child.id === this.form.id) { return } const configuration = JSON.parse(child.configuration)