Skip to content

Commit

Permalink
HPCC-30415 ECL Watch v9 fix Add User to Group username label
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Oct 19, 2023
1 parent 813ba59 commit e0c57de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/GroupMembers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const GroupMembers: React.FunctionComponent<GroupMembersProps> = ({
const columns = React.useMemo((): FluentColumns => {
return {
username: {
label: nlsHPCC.UserName,
label: nlsHPCC.Username,
formatter: (_name, idx) => {
return <Link href={`#/${opsCategory}/security/users/${_name}`}>{_name}</Link>;
}
Expand Down
2 changes: 1 addition & 1 deletion esp/src/src-react/components/forms/GroupAddUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const GroupAddUserForm: React.FunctionComponent<GroupAddUserProps> = ({
key={fieldName}
groupname={groupname}
required={true}
label={nlsHPCC.GroupName}
label={nlsHPCC.Username}
selectedKey={value}
onChange={(evt, option) => {
onChange(option.key);
Expand Down

0 comments on commit e0c57de

Please sign in to comment.