Merge pull request 'fix(email): maxLength 64' (#52) from lavoce into main
Reviewed-on: #52
This commit is contained in:
@@ -13,7 +13,7 @@ const DetailContact = memo(function DetailContact(props) {
|
||||
id: '',
|
||||
name: '',
|
||||
phone: '',
|
||||
email: '',
|
||||
email: '',
|
||||
is_active: true,
|
||||
};
|
||||
|
||||
@@ -291,7 +291,7 @@ const DetailContact = memo(function DetailContact(props) {
|
||||
onChange={handleInputChange}
|
||||
placeholder="Enter Email Number"
|
||||
readOnly={props.readOnly}
|
||||
maxLength={15}
|
||||
maxLength={64}
|
||||
style={{ color: formData.is_active ? '#000000' : '#ff4d4f' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user