fix(datetime-picker): 修复year-month 选择字段校验报错 (#3783)

This commit is contained in:
jm 2020-11-29 18:25:41 +08:00 committed by GitHub
parent 166ba61c0f
commit c254b3d073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,9 @@ function times(n: number, iteratee: (index: number) => string): string[] {
}
function getTrueValue(formattedValue: string) {
if (formattedValue === undefined) {
formattedValue = '1';
}
while (isNaN(parseInt(formattedValue, 10))) {
formattedValue = formattedValue.slice(1);
}