Skip to content

Commit 685065d

Browse files
authored
Users list: incorrect value in EmailAddress column
dataIndex and Key for EmailAddress fixed.
1 parent 9b93056 commit 685065d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reactjs/src/scenes/Users/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class User extends AppComponentBase<IUserProps, IUserState> {
115115
const columns = [
116116
{ title: L('UserName'), dataIndex: 'userName', key: 'userName', width: 150, render: (text: string) => <div>{text}</div> },
117117
{ title: L('FullName'), dataIndex: 'name', key: 'name', width: 150, render: (text: string) => <div>{text}</div> },
118-
{ title: L('EmailAddress'), dataIndex: 'surname', key: 'surname', width: 150, render: (text: string) => <div>{text}</div> },
118+
{ title: L('EmailAddress'), dataIndex: 'emailAddress', key: 'emailAddress', width: 150, render: (text: string) => <div>{text}</div> },
119119
{
120120
title: L('IsActive'),
121121
dataIndex: 'isActive',

0 commit comments

Comments
 (0)