From 6d2f998d6e5b7efdb01407808cc35ba18e2151f7 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 4 Dec 2023 14:08:34 -0500 Subject: [PATCH] chore: lint --- core/src/components/datetime/datetime.tsx | 49 +++++++++++++++++++---- 1 file changed, 42 insertions(+), 7 deletions(-) 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} ))}