Skip to content

Commit

Permalink
rename text for hidden emails in mgmt interface
Browse files Browse the repository at this point in the history
  • Loading branch information
N7Remus committed Dec 23, 2024
1 parent 5391819 commit 3cc418e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/managementservice/groups/GroupUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const GroupUserTable = () => {
if (t && t.email) {
return t.email;
} else {
return 'no such email';
return 'Hidden email';
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/managementservice/rooms/Room.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const RoomTable = () => {
if (t && t.email) {
return t.email;
} else {
return 'no such email';
return 'Hidden email';
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/managementservice/tenants/TenantAdmin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TenantAdminTable = () => {
if (t && t.email) {
return t.email;
} else {
return 'no such email';
return 'Hidden email';
}
};
// should be memoized or stable
Expand Down
2 changes: 1 addition & 1 deletion src/components/managementservice/tenants/TenantOwner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TenantOwnerTable = () => {
if (t && t.email) {
return t.email;
} else {
return 'no such email';
return 'Hidden email';
}
};
// should be memoized or stable
Expand Down

0 comments on commit 3cc418e

Please sign in to comment.