diff --git a/core/src/components/datetime/datetime.tsx b/core/src/components/datetime/datetime.tsx index 6e49fc756e..9109d859a1 100644 --- a/core/src/components/datetime/datetime.tsx +++ b/core/src/components/datetime/datetime.tsx @@ -1648,7 +1648,12 @@ export class Datetime implements ComponentInterface { }} > {items.map((item: PickerColumnItem) => ( - + {item.text} ))} @@ -1771,7 +1776,12 @@ export class Datetime implements ComponentInterface { }} > {days.map((day: PickerColumnItem) => ( - + {day.text} ))} @@ -1821,7 +1831,12 @@ export class Datetime implements ComponentInterface { }} > {months.map((month: PickerColumnItem) => ( - + {month.text} ))} @@ -1870,7 +1885,12 @@ export class Datetime implements ComponentInterface { }} > {years.map((year: PickerColumnItem) => ( - + {year.text} ))} @@ -1938,7 +1958,12 @@ export class Datetime implements ComponentInterface { }} > {hoursData.map((hour: PickerColumnItem) => ( - + {hour.text} ))} @@ -1972,7 +1997,12 @@ export class Datetime implements ComponentInterface { }} > {minutesData.map((minute: PickerColumnItem) => ( - + {minute.text} ))} @@ -2013,7 +2043,12 @@ export class Datetime implements ComponentInterface { }} > {dayPeriodData.map((dayPeriod: PickerColumnItem) => ( - + {dayPeriod.text} ))}