Skip to content

Commit

Permalink
Fix: Fixed the issue where the required information in the input box …
Browse files Browse the repository at this point in the history
…was incorrect when inviting users infiniflow#2834 (infiniflow#4086)

### What problem does this PR solve?

Fix: Fixed the issue where the required information in the input box was
incorrect when inviting users infiniflow#2834

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
  • Loading branch information
cike8899 authored and learnerLj committed Dec 19, 2024
1 parent 5c119ee commit 85f7eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/user-setting/setting-team/add-user-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const AddingUserModal = ({
<Form.Item<FieldType>
label={t('setting.email')}
name="email"
rules={[{ required: true, message: t('namePlaceholder') }]}
rules={[{ required: true }]}
>
<Input />
</Form.Item>
Expand Down

0 comments on commit 85f7eea

Please sign in to comment.