From 345863239665e2cf5931fbd8f068bc062b3448dd Mon Sep 17 00:00:00 2001 From: Shawn Taylor Date: Thu, 15 Feb 2024 15:22:53 -0500 Subject: [PATCH] add link to time zone docs --- docs/api/datetime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/datetime.md b/docs/api/datetime.md index 281ac89eb5e..8c1b0d5dbf1 100644 --- a/docs/api/datetime.md +++ b/docs/api/datetime.md @@ -274,7 +274,7 @@ By default, `ion-datetime` does not show any header or title associated with the You can customize the format of the date in the header text and the time in the time button of a Datetime component by providing `formatOptions`. The `date` and `time` in the `formatObjects` property should each be an [`Intl.DateTimeFormatOptions`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#options) object. If `formatObjects` is not provided, default formats will be used for dates and times. -If `timeZone` or `timeZoneName` are provided, they will be ignored, and the time zone will be set to UTC. This ensures that the displayed value matches the selected value, rather than being converted to the user's current time zone. +Datetime [does not manipulate or set](#time-zones) the time zone. If `timeZone` or `timeZoneName` are provided, they will be ignored, and the time zone will be set to UTC. This ensures that the displayed value matches the selected value, rather than being converted to the user's current time zone. Be careful with the options you provide, as they may not match the selected presentation. For example, providing `minute: 'numeric'` for a presentation of `month` may lead to unexpected behavior, displaying a month where only a time might be expected.