From 573c6145595d45565bfb0182c2697ad7de7be20a Mon Sep 17 00:00:00 2001 From: Mikhail Volkov Date: Mon, 22 Apr 2024 23:00:42 -0400 Subject: [PATCH] Updates --- CHANGELOG.md | 9 +++++---- src/components/FormElements/FormElements.test.tsx | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf8b986e..04233941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ ### Features / Enhancements -- Add Checkbox List element (#382) -- Update syntax support in Code Editor (#383) -- Add plugin e2e tests and remove cypress (#390) -- Add server-based form elements example (#392) +- Added Checkbox List element (#382) +- Updated syntax support in Code Editor (#383) +- Added plugin e2e tests and remove cypress (#390) +- Added server-based form elements example (#392) +- Added input type time (#385) ## 3.7.0 (2024-03-10) diff --git a/src/components/FormElements/FormElements.test.tsx b/src/components/FormElements/FormElements.test.tsx index e2ba36c4..39538614 100644 --- a/src/components/FormElements/FormElements.test.tsx +++ b/src/components/FormElements/FormElements.test.tsx @@ -52,7 +52,7 @@ describe('Form Elements', () => { { id: 'code', type: FormElementType.CODE }, { id: 'boolean', type: FormElementType.BOOLEAN }, { id: 'datetime', type: FormElementType.DATETIME }, - { id: 'datetime', type: FormElementType.TIME }, + { id: 'time', type: FormElementType.TIME }, { id: 'radioGroup', type: FormElementType.RADIO }, { id: 'checkboxList', type: FormElementType.CHECKBOX_LIST }, { id: 'disabled', type: FormElementType.DISABLED },