diff --git a/ui/src/components/SchemaForm/index.tsx b/ui/src/components/SchemaForm/index.tsx index 82b234ae..6967c5a6 100644 --- a/ui/src/components/SchemaForm/index.tsx +++ b/ui/src/components/SchemaForm/index.tsx @@ -225,6 +225,9 @@ const SchemaForm: FC = ({ ); })} + + {formData[key]?.errorMsg} + {description} ); @@ -243,6 +246,9 @@ const SchemaForm: FC = ({ feedbackType="invalid" isInvalid={formData[key].isInvalid} /> + + {formData[key]?.errorMsg} + {description} ); @@ -255,6 +261,14 @@ const SchemaForm: FC = ({ value={formData[key]?.value} onChange={handleInputChange} /> + + + {formData[key]?.errorMsg} + {description} ); @@ -269,6 +283,14 @@ const SchemaForm: FC = ({ value={formData[key]?.value} onChange={(value) => handleUploadChange(key, value)} /> + + + {formData[key]?.errorMsg} + {description} );