Skip to content

Commit e2266b8

Browse files
authored
Merge pull request #420 from raminmjj/patch-1
Users list: incorrect value in EmailAddress column
2 parents 9b93056 + 685065d commit e2266b8

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)