feat(client): add update password

This commit is contained in:
2025-06-27 13:25:25 +05:00
parent 8f3fde623f
commit 1eadd834e3
5 changed files with 28 additions and 8 deletions

View File

@@ -123,6 +123,15 @@ export default function AccountsPage() {
title: t('createdAt'),
dataIndex: 'createdAt',
key: 'createdAt',
render: (text) => (
<div>
{new Date(text).toLocaleString('ru', {
year: '2-digit',
month: '2-digit',
day: '2-digit',
})}
</div>
),
},
{
title: t('status'),
@@ -191,7 +200,7 @@ export default function AccountsPage() {
closeDrawer={closeEditDrawer}
type="edit"
>
<UserEdit userId={activeAccount?.id} />
<UserEdit userId={activeAccount?.id} closeDrawer={closeEditDrawer} />
</ContentDrawer>
</>
);