ProFormFieldSet 影响 ProFormText addonBefore 属性文本消失?

ProFormFieldSet affecting ProFormText addonBefore attribute text to disappear?

我试图在每个 Proformtext 组件之前添加一些文本,但它没有出现

下面是我的代码

  <ProFormFieldSet
     name="firstrow"
     label={<span style={{fontSize: fontSize}}>A</span>}
     labelAlign={labelAlignment}
    >
      <ProFormText
        addonBefore="helloworld"
        labelAlign={labelAlignment}
        width="md"
      />
              =
     <ProFormText
        addonBefore={C}
        width="md" />
  </ProFormFieldSet>

这是实际结果

预期结果

每个输入旁边都有文字。

我试过的

我从 ProFormFieldSet 中取出 ProFormText 组件,文本出现了。有人知道为什么会这样吗??

根据参考,我们为ProFormText设置的props其实是为Form.Item设置的,fieldProps是为included Input设置的,切记。 pro-form-fields-reference 试试下面的方法

<ProFormFieldSet
     name="firstrow"
     label={<span style={{fontSize: fontSize}}>A</span>}
     labelAlign={labelAlignment}
    >
      <ProFormText
        fieldProps={{addonBefore:"helloworld"}}
        labelAlign={labelAlignment}
        width="md"
      />
              =
     <ProFormText
        fieldProps={{addonBefore: C}}
        width="md" />
  </ProFormFieldSet>