diff --git a/core/src/components/datetime/datetime.tsx b/core/src/components/datetime/datetime.tsx
index 44e1c6c2a7..c8ff06ef2f 100644
--- a/core/src/components/datetime/datetime.tsx
+++ b/core/src/components/datetime/datetime.tsx
@@ -1612,6 +1612,7 @@ export class Datetime implements ComponentInterface {
? `${workingParts.year}-${workingParts.month}-${workingParts.day}`
: `${defaultParts.year}-${defaultParts.month}-${defaultParts.day}`;
+ console.log('hi there', items)
return (
{items.map((item: PickerColumnItem) => (
- {item.text}
+ {item.text}
))}
);
@@ -1768,7 +1769,7 @@ export class Datetime implements ComponentInterface {
}}
>
{days.map((day: PickerColumnItem) => (
- {day.text}
+ {day.text}
))}
);
@@ -1816,7 +1817,7 @@ export class Datetime implements ComponentInterface {
}}
>
{months.map((month: PickerColumnItem) => (
- {month.text}
+ {month.text}
))}
);
@@ -1863,7 +1864,7 @@ export class Datetime implements ComponentInterface {
}}
>
{years.map((year: PickerColumnItem) => (
- {year.text}
+ {year.text}
))}
);
@@ -1929,7 +1930,7 @@ export class Datetime implements ComponentInterface {
}}
>
{hoursData.map((hour: PickerColumnItem) => (
- {hour.text}
+ {hour.text}
))}
);
@@ -1961,7 +1962,7 @@ export class Datetime implements ComponentInterface {
}}
>
{minutesData.map((minute: PickerColumnItem) => (
- {minute.text}
+ {minute.text}
))}
);
@@ -2000,7 +2001,7 @@ export class Datetime implements ComponentInterface {
}}
>
{dayPeriodData.map((dayPeriod: PickerColumnItem) => (
- {dayPeriod.text}
+ {dayPeriod.text}
))}
);