diff --git a/CHANGELOG.md b/CHANGELOG.md index e9cb8a0b5..0fbe9adaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed -- Update style of `ProposalActionItem` module component, render link to block explorer for target address +- Update `` core component to not truncate description strings +- Update style of `` module component, render link to block explorer for target address - Rename `tokenPrice` property to `amountUsd` on `` module component - Update workflow to deploy Storybook application to Github pages - Update minor and patch NPM dependencies diff --git a/src/core/components/dialogs/dialog/dialogHeader/dialogHeader.tsx b/src/core/components/dialogs/dialog/dialogHeader/dialogHeader.tsx index 9c08097c0..e53b2d444 100644 --- a/src/core/components/dialogs/dialog/dialogHeader/dialogHeader.tsx +++ b/src/core/components/dialogs/dialog/dialogHeader/dialogHeader.tsx @@ -38,7 +38,7 @@ export const DialogHeader: React.FC = (props) => { return (
{showBackButton && ( @@ -50,12 +50,10 @@ export const DialogHeader: React.FC = (props) => { onClick={onBackClick} /> )} -
+
{title} {description && ( - - {description} - + {description} )}