Merge remote-tracking branch 'origin/main' into sync-feature-10-21

This commit is contained in:
Sean Perkins
2022-10-21 14:36:30 -04:00
100 changed files with 992 additions and 752 deletions

View File

@ -160,7 +160,8 @@ export class DatetimeButton implements ComponentInterface {
* to keep checking if the datetime value is `string` or `string[]`.
*/
private getParsedDateValues = (value?: string[] | string | null): string[] => {
if (value === undefined || value === null) {
// TODO FW-2646 Remove value === ''
if (value === '' || value === undefined || value === null) {
return [];
}