0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-30 20:33:54 -05:00

fix(console): user roles table column name (#3049)

This commit is contained in:
Xiao Yijun 2023-02-02 21:02:02 +08:00 committed by GitHub
parent de1b418461
commit c4fdf4613a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ const UserRoles = () => {
),
},
{
title: t('user_details.roles.name_column'),
title: t('user_details.roles.description_column'),
dataIndex: 'description',
colSpan: 9,
render: ({ description }) => <div className={styles.description}>{description}</div>,