We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b395f commit 72b7e70Copy full SHA for 72b7e70
static/app/views/issueList/pages/dynamicGrouping.tsx
@@ -454,7 +454,12 @@ function ClusterCard({
454
{cluster.description && (
455
<Fragment>
456
{showDescription ? (
457
- <DescriptionText>{cluster.description}</DescriptionText>
+ <Fragment>
458
+ <DescriptionText>{cluster.description}</DescriptionText>
459
+ <ReadMoreButton onClick={() => setShowDescription(false)}>
460
+ {t('Collapse summary')}
461
+ </ReadMoreButton>
462
+ </Fragment>
463
) : (
464
<ReadMoreButton onClick={() => setShowDescription(true)}>
465
{t('View summary')}
0 commit comments