balibabu
commited on
Commit
·
c7d644d
1
Parent(s):
241b23e
Fix: Fixed the issue where the required information in the input box was incorrect when inviting users #2834 (#4086)
Browse files### What problem does this PR solve?
Fix: Fixed the issue where the required information in the input box was
incorrect when inviting users #2834
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
web/src/pages/user-setting/setting-team/add-user-modal.tsx
CHANGED
|
@@ -40,7 +40,7 @@ const AddingUserModal = ({
|
|
| 40 |
<Form.Item<FieldType>
|
| 41 |
label={t('setting.email')}
|
| 42 |
name="email"
|
| 43 |
-
rules={[{ required: true
|
| 44 |
>
|
| 45 |
<Input />
|
| 46 |
</Form.Item>
|
|
|
|
| 40 |
<Form.Item<FieldType>
|
| 41 |
label={t('setting.email')}
|
| 42 |
name="email"
|
| 43 |
+
rules={[{ required: true }]}
|
| 44 |
>
|
| 45 |
<Input />
|
| 46 |
</Form.Item>
|