Commit 656f857240735f36fa917fdfdced9216600cd3c6

Authored by xp.Huang
2 parents 07a8c45e 446c0970

Merge branch 'fix/DEFECT-1879' into 'main_dev'

fix: DEFECT-1879 修复数据流转编辑时变更产品设备查询为空

See merge request yunteng/thingskit-front!1185
... ... @@ -87,7 +87,10 @@ export const modeForm = (disabled: boolean): FormSchema[] => {
87 87 },
88 88 },
89 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 },
... ...