Commit 446c0970597fe620ae42d76e2088e54ca2644d49
1 parent
990fecce
fix: DEFECT-1879 修复数据流转编辑时变更产品设备查询为空
Showing
1 changed file
with
4 additions
and
1 deletions
@@ -87,7 +87,10 @@ export const modeForm = (disabled: boolean): FormSchema[] => { | @@ -87,7 +87,10 @@ export const modeForm = (disabled: boolean): FormSchema[] => { | ||
87 | }, | 87 | }, |
88 | }, | 88 | }, |
89 | onChange: () => { | 89 | onChange: () => { |
90 | - setFieldsValue({ [BasicInfoFormField.DATA_SOURCE_DEVICE]: [] }); | 90 | + setFieldsValue({ |
91 | + [BasicInfoFormField.DATA_SOURCE_DEVICE]: [], | ||
92 | + [BasicInfoFormField.CONVERT_CONFIG_ID]: null, | ||
93 | + }); | ||
91 | }, | 94 | }, |
92 | }; | 95 | }; |
93 | }, | 96 | }, |