ant-design / pro-components

🏆 Use Ant Design like a Pro!
https://pro-components.antdigital.dev
MIT License
4.3k stars 1.36k forks source link

🐛[BUG] 在 ProFormFeild label 属性里使用 FormattedMessage,且 rules 加了 required,报错信息会显示 [object Object] #8389

Open one-pieces opened 5 months ago

one-pieces commented 5 months ago

提问前先看看:

https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md

🐛 bug 描述

如题

📷 复现步骤

用 ProFromSelect 举个例子


<ProFormSelect
          colProps={{ span: 12 }}
          label={<FormattedMessage id="pages.type" />}
          name={['type']}
          allowClear={false}
          fieldProps={{
            popupMatchSelectWidth: false,
          }}
          options={options}
          rules={[{ required: true }]}
        />

🏞 期望结果

应该显示序列化后的字符串

💻 复现代码

© 版本信息

🚑 其他信息

image