Skip to content

Commit 0baa875

Browse files
authored
fix(condo): fix id display on deleted organizations (#5917)
1 parent e0a49fd commit 0baa875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/condo/domains/user/components/UserOrganizationsList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const OrganizationEmployeeItem: React.FC<IOrganizationEmployeeItem> = (props) =>
9393
<Typography.Text type='secondary'>ID</Typography.Text>
9494
</Col>
9595
<Col lg={18} xs={12} offset={1}>
96-
<Typography.Text>{employee.organization.id}</Typography.Text>
96+
<NotDefinedField value={get(employee, ['organization', 'id'])} />
9797
</Col>
9898
</>
9999
)

0 commit comments

Comments
 (0)