fix eslint errors
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
name?: string;
|
||||
value?: CalendarDate;
|
||||
min?: CalendarDate;
|
||||
max?: CalendarDate;
|
||||
// max?: CalendarDate; // TODO: Implement validation.
|
||||
label?: string;
|
||||
required?: boolean;
|
||||
invalidMessage?: string;
|
||||
@@ -32,7 +32,7 @@
|
||||
/** min specifies lower bounds for the date input (WARNING: NOT IMPLEMENTED) */
|
||||
min = new CalendarDate(1900, 0, 1),
|
||||
/** max specifies upper bounds for the date input (WARNING: NOT IMPLEMENTED) */
|
||||
max = new CalendarDate(2100, 11, 31),
|
||||
// max = new CalendarDate(2100, 11, 31),
|
||||
label,
|
||||
required = false,
|
||||
invalidMessage = 'Valid date is required',
|
||||
|
||||
Reference in New Issue
Block a user