10488 accept decimal and allow decimal field type
This commit is contained in:
@@ -71,13 +71,16 @@ const RenderTextfield = ({
|
||||
)}
|
||||
<input
|
||||
{...input}
|
||||
type={custom.type}
|
||||
className={className}
|
||||
name={name}
|
||||
id={id}
|
||||
maxLength={
|
||||
custom.hasOwnProperty("maxFieldLength")
|
||||
? custom.maxFieldLength
|
||||
: undefined
|
||||
? custom.maxFieldLength
|
||||
: 100
|
||||
: 200
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
@@ -212,7 +215,9 @@ const RenderMultiline = ({
|
||||
maxLength={
|
||||
custom.hasOwnProperty("maxFieldLength")
|
||||
? custom.maxFieldLength
|
||||
: undefined
|
||||
? custom.maxFieldLength
|
||||
: 800
|
||||
: 800
|
||||
}
|
||||
></textarea>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user