issue: customer communication contacts grid height.
change: replace schedule date control. change: date validation from 1753-01-01 to 9999-12-31.
This commit is contained in:
@ -22,9 +22,13 @@ export function createDateInput(min, max, element) {
|
||||
date.type = 'date';
|
||||
if (min != null) {
|
||||
date.min = min;
|
||||
} else {
|
||||
date.min = '1753-01-01';
|
||||
}
|
||||
if (max != null) {
|
||||
date.max = max;
|
||||
} else {
|
||||
date.max = '9999-12-31';
|
||||
}
|
||||
return date;
|
||||
}
|
||||
|
Reference in New Issue
Block a user