Skip to content

Commit 5ff2405

Browse files
committed
fix(time-picker): dev sample min/max/date values
1 parent 731b67f commit 5ff2405

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/time-picker/time-picker.sample.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export class TimePickerSampleComponent {
3636
public spinLoop = true;
3737
public datePart = DatePart.Hours;
3838

39-
public date = new Date(2024, 3, 8, 0, 0, 0);
40-
public max = new Date(2024, 3, 9, 0, 0, 0);
41-
public min= new Date(2024, 3, 7, 59, 59, 999);
39+
public date = new Date(2018, 10, 27, 11, 45, 0, 0);
40+
public min = new Date(2018, 10, 27, 6, 30, 15, 0);
41+
public max = new Date(2018, 10, 27, 14, 20, 30, 0);
4242
public date1 = new Date(2018, 10, 27, 11, 45, 0, 0);
4343
public val = '08:30:00';
4444
public today = new Date(Date.now());

0 commit comments

Comments
 (0)