We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd25de4 commit db23358Copy full SHA for db23358
packages/antd/src/templates/FieldHelpTemplate/index.tsx
@@ -14,9 +14,12 @@ export default function FieldHelpTemplate<
14
if (!help) {
15
return null;
16
}
17
+
18
+ const id = helpId(fieldPathId);
19
20
return (
- <span id={helpId(fieldPathId)}>
21
+ <div id={id} className='ant-form-item-extra'>
22
<RichHelp help={help} registry={registry} uiSchema={uiSchema} />
- </span>
23
+ </div>
24
);
25
0 commit comments