소스 검색

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

### 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)
tags/v0.15.0
balibabu 10 달 전
부모
커밋
dfbdeaddaf
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      web/src/pages/user-setting/setting-team/add-user-modal.tsx

+ 1
- 1
web/src/pages/user-setting/setting-team/add-user-modal.tsx 파일 보기

@@ -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>

Loading…
취소
저장