- finished new flow builder UI;
- fixed reset pass functionality;
This commit is contained in:
@@ -16,6 +16,7 @@ import Wysiwyg from './components/Wysiwyg';
|
||||
import Checkboxes from './components/Checkboxes';
|
||||
import Fileupload from './components/Fileupload';
|
||||
import Table from './components/Table';
|
||||
import PasswordField from './components/PasswordField';
|
||||
|
||||
const FormField = (props) => {
|
||||
const fields = {
|
||||
@@ -31,7 +32,8 @@ const FormField = (props) => {
|
||||
radio: Radio,
|
||||
wysiwyg: Wysiwyg,
|
||||
checkboxes: Checkboxes,
|
||||
table: Table
|
||||
table: Table,
|
||||
password: PasswordField
|
||||
}
|
||||
const Comp = !isNil(fields[props.type]) ? fields[props.type] : null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user