Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions app/client/src/ce/pages/workspace/Members.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ export const MembersWrapper = styled.div<{
color: var(--ads-v2-color-fg);
padding: 8px 20px;

&:nth-child(2) {
width: 140px;
}

&:nth-child(3) {
width: 110px;
}

Copy link
Contributor

@ankitakinger ankitakinger Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove:

 &:nth-child(2) {
  width: 140px;
}

&:nth-child(3) {
  width: 110px;
}

Add:

&:first-child {
   width: 240px;
}

&:last-child {
width: 120px;
}
Expand Down Expand Up @@ -189,6 +197,14 @@ export const StyledText = styled(Text)`
0;
`;

export const DisplayNameText = styled.div`
max-width: 140px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: var(--ads-v2-color-fg);
`;

export default function MemberSettings(props: PageProps) {
const {
match: {
Expand Down Expand Up @@ -354,6 +370,22 @@ export default function MemberSettings(props: PageProps) {
);
},
},
{
Header: "Display Name",
accessor: "name",
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Cell: function DisplayNameCell(props: any) {
const member = props.cell.row.original;
const displayName = member.name || "-";

return (
<RowWrapper>
<DisplayNameText title={displayName}>{displayName}</DisplayNameText>
</RowWrapper>
);
},
},
{
Header: "Resource",
accessor: "resource",
Expand Down
Loading