VORKOUT-8 #13

Merged
vlad.dev merged 30 commits from VORKOUT-8 into master 2025-07-02 12:23:44 +05:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit 448e4264a5 - Show all commits

View File

@ -160,6 +160,7 @@ export default function ContentDrawer({
placement="right"
open={open}
width={width}
destroyOnHidden={true}
closable={false}
>
{children}

View File

@ -77,7 +77,7 @@ export default function UserEdit({ userId }: UserEditProps) {
<Form.Item
label={t('tenant')}
name="tenant"
name="bindTenantId"
rules={[{ required: true, message: t('tenantMessage') }]}
>
<Input />

View File

@ -97,7 +97,7 @@ export default function AccountsPage() {
</div>
<div style={{ display: 'flex', flexDirection: 'column' }}>
<div>{record.name}</div>
<div style={{ color: '#606060' }}>{record.email}</div>
<div style={{ color: '#606060' }}>{record.login}</div>
</div>
</div>
),