Merge branch 'main' into i18n_main

This commit is contained in:
Amruth Pillai
2023-07-21 22:14:11 +02:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@ -58,7 +58,8 @@ const ResumeInput: React.FC<Props> = ({ type = 'text', label, path, className, m
openTo="year" openTo="year"
label={label} label={label}
value={dayjs(value)} value={dayjs(value)}
slots={{ textField: (params) => <TextField {...params} error={false} className={className} /> }} views={['year', 'month', 'day']}
className={className}
onChange={(date: dayjs.Dayjs | null) => { onChange={(date: dayjs.Dayjs | null) => {
if (!date) return onChangeValue(''); if (!date) return onChangeValue('');
if (dayjs(date).isValid()) return onChangeValue(dayjs(date).format('YYYY-MM-DD')); if (dayjs(date).isValid()) return onChangeValue(dayjs(date).format('YYYY-MM-DD'));

View File

@ -173,7 +173,9 @@
"institution": { "institution": {
"label": "Instituição" "label": "Instituição"
} }
} },
"heading": "Escolaridade",
"heading_one": "Escolaridade"
}, },
"experience": { "experience": {
"form": { "form": {