diff --git a/ui/src/components/SchemaForm/index.tsx b/ui/src/components/SchemaForm/index.tsx index 54ed6e9f..16ea9dab 100644 --- a/ui/src/components/SchemaForm/index.tsx +++ b/ui/src/components/SchemaForm/index.tsx @@ -365,7 +365,10 @@ const SchemaForm: ForwardRefRenderFunction<FormRef, FormProps> = ( {fieldState?.errorMsg} </Form.Control.Feedback> {description ? ( - <Form.Text className="text-muted">{description}</Form.Text> + <Form.Text + className="text-muted" + dangerouslySetInnerHTML={{ __html: description }} + /> ) : null} </Form.Group> );