Skip to content

Commit cafe4c2

Browse files
authored
Set max width for data classification dropdown popups (#7015)
1 parent 91fbfd9 commit cafe4c2

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Changes can also be flagged with a GitHub label for tracking purposes. The URL o
2323

2424
### Changed
2525
- Updated promote endpoints to return MonitorActionResponse type [#7004](https://github.com/ethyca/fides/pull/7004)
26+
- Set max width for Action center classification dropdown [#7015](https://github.com/ethyca/fides/pull/7015)
2627

2728
### Developer Experience
2829
- Upgrade client projects to Typescript 5 [#6986](https://github.com/ethyca/fides/pull/6986)

clients/admin-ui/src/features/common/dropdown/TaxonomySelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const TaxonomyOption = ({
3939
<strong>{primaryName || name}</strong>
4040
{primaryName && `: ${name}`}
4141
</div>
42-
<em>{description}</em>
42+
<em className="overflow-hidden text-ellipsis">{description}</em>
4343
</Flex>
4444
);
4545
};

clients/admin-ui/src/features/data-discovery-and-detection/action-center/fields/ClassificationSelect.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const ClassificationSelect = ({
7171
setOpen(false);
7272
}}
7373
data-classification-select={urn}
74+
popupMatchSelectWidth={600}
7475
{...props}
7576
/>
7677
);

0 commit comments

Comments
 (0)