Skip to content

Commit

Permalink
Allow Privacy Action Cards to Grow (#3669)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertKeyser authored Jun 30, 2023
1 parent f4ca8cc commit c169bc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ The types of changes are:
- Remove name and description fields from integration form [#3684](https://github.com/ethyca/fides/pull/3684)
- Update EU PrivacyNoticeRegion codes and allow experience filtering to drop back to country filtering if region not found [#3630](https://github.com/ethyca/fides/pull/3630)
- Fields with default fields are now flagged as required in the front-end [#3694](https://github.com/ethyca/fides/pull/3694)
- Privacy center action cards are now able to expand to accommodate longer text [#3669](https://github.com/ethyca/fides/pull/3669)


## [2.15.0](https://github.com/ethyca/fides/compare/2.14.1...2.15.0)
Expand Down
10 changes: 2 additions & 8 deletions clients/privacy-center/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Card: React.FC<CardProps> = ({
data-testid="card"
flexDirection="column"
gap="12px"
h="176px"
minH="176px"
key={title}
m={2}
onClick={() => {
Expand Down Expand Up @@ -57,13 +57,7 @@ const Card: React.FC<CardProps> = ({
>
{title}
</Text>
<Text
color="gray.600"
fontSize="xs"
fontWeight="normal"
lineHeight="16px"
noOfLines={3}
>
<Text color="gray.600" fontSize="xs" fontWeight="normal" lineHeight="16px">
{description}
</Text>
</Flex>
Expand Down

0 comments on commit c169bc5

Please sign in to comment.