Datatrails: Fix overflow of labels (#87301)

Fix overflow of labels
This commit is contained in:
ismail simsek 2024-05-03 15:26:30 +02:00 committed by GitHub
parent 346dbab768
commit 9fbca6c035
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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} />
))}