Merge pull request #477 from answerdev/feat/1.1.2/ui

Feat/1.1.2/UI
This commit is contained in:
dashuai 2023-08-15 14:53:25 +08:00 committed by GitHub
commit 069d7f20c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -1434,6 +1434,7 @@ ui:
fields:
users:
label: Bulk add user
placeholder: "John Smith, john@example.com, BUSYopr2 \nAlice, alice@example.com, fpDntV8q"
text: Separate “name, email, password” with commas. One user per line.
msg: "Please enter the user's email, one per line."
display_name:

View File

@ -37,7 +37,9 @@ const useAddUserModal = (props: IProps = {}) => {
users: {
'ui:widget': 'textarea',
'ui:options': {
rows: 6,
rows: 7,
placeholder: t('form.fields.users.placeholder'),
className: 'small',
},
},
};

View File

@ -40,6 +40,10 @@ img[src=""] {
font-size: 0.75rem;
}
.small {
font-size: 0.875rem;
}
.pic-auth-modal {
width: 25%;
}