-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bd0d53
commit 56eae8a
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,21 +60,29 @@ const applyConfig = (config) => { | |
blockSchema: schemaFormBlockSchema, | ||
fieldSchema: FieldSchema, | ||
filterFactory: [ | ||
'label_textline_field', | ||
'label_text_field', | ||
'label_choice_field', | ||
'label_multi_choice_field', | ||
'label_boolean_field', | ||
'label_date_field', | ||
'label_datetime_field', | ||
'File Upload', | ||
'label_email', | ||
'radio_group', | ||
'checkbox_group', | ||
'hidden', | ||
'static_text', | ||
'number', | ||
'textarea', | ||
'time', | ||
], | ||
additionalFactory: [ | ||
{ value: 'textarea', label: 'Textarea' }, | ||
{ value: 'radio_group', label: 'Radio Group' }, | ||
{ value: 'checkbox_group', label: 'Checkbox Group' }, | ||
{ value: 'hidden', label: 'Hidden' }, | ||
{ value: 'static_text', label: 'Static Text' }, | ||
{ value: 'number', label: 'Number' }, | ||
{ value: 'time', label: 'Time' }, | ||
], | ||
defaultSender: '[email protected]', | ||
defaultSenderName: 'Plone', | ||
|