mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 01:32:02 +10:00
Merge branch 'main' into i18n_main
This commit is contained in:
@ -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'));
|
||||||
|
|||||||
@ -173,7 +173,9 @@
|
|||||||
"institution": {
|
"institution": {
|
||||||
"label": "Instituição"
|
"label": "Instituição"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"heading": "Escolaridade",
|
||||||
|
"heading_one": "Escolaridade"
|
||||||
},
|
},
|
||||||
"experience": {
|
"experience": {
|
||||||
"form": {
|
"form": {
|
||||||
|
|||||||
Reference in New Issue
Block a user