Datatrails: Fix overflow of labels (#87301)

Fix overflow of labels
This commit is contained in:
ismail simsek
2024-05-03 09:26:30 -04:00
committed by GitHub
parent 346dbab768
commit 9fbca6c035
+1 -1
View File
@@ -32,7 +32,7 @@ export function DataTrailCard({ trail, onSelect, onDelete }: Props) {
<Card onClick={onClick} className={styles.card}>
<Card.Heading>{getMetricName(trail.state.metric)}</Card.Heading>
<div className={styles.description}>
<Stack gap={1.5}>
<Stack gap={1.5} wrap="wrap">
{filters.map((f) => (
<Tag key={f.key} name={`${f.key}: ${f.value}`} colorIndex={12} />
))}