From aa1912f6d29a0653112c58cc38ca5b3682035479 Mon Sep 17 00:00:00 2001 From: Michael Holthausen Date: Fri, 2 Jun 2023 09:29:23 +0200 Subject: [PATCH] fix: sync edit form component types with backend --- src/model/enum/EditFormComponentType.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model/enum/EditFormComponentType.ts b/src/model/enum/EditFormComponentType.ts index 315d2a85e..af733fccb 100644 --- a/src/model/enum/EditFormComponentType.ts +++ b/src/model/enum/EditFormComponentType.ts @@ -1,4 +1,4 @@ -export type EditFormComponentType = 'CHECKBOX' | 'DATE' | 'DROPDOWN' | 'INPUT' | 'NUMBER' | - 'SWITCH' | 'TEXTAREA' | 'UPLOAD' | 'DISPLAY' | 'SELECT'; +export type EditFormComponentType = 'CHECKBOX' | 'DATE' | 'DISPLAY' | 'INPUT' | 'NUMBER' | +'SELECT' | 'SWITCH' | 'TEXTAREA' | 'UPLOAD'; export default EditFormComponentType;