Commit 656f857240735f36fa917fdfdced9216600cd3c6
Merge branch 'fix/DEFECT-1879' into 'main_dev'
fix: DEFECT-1879 修复数据流转编辑时变更产品设备查询为空 See merge request yunteng/thingskit-front!1185
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 | }, |