1
0
mirror of https://github.com/Unleash/unleash.git synced 2026-01-23 20:06:43 +01:00

fix: safeguard minichart correct width (#11105)

This commit is contained in:
Jaanus Sellin 2025-12-09 15:23:03 +02:00 committed by GitHub
parent 232a8634cd
commit 918a76368d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,7 @@ import type { MetricQuerySchemaTimeRange } from 'openapi/models/metricQuerySchem
import type { MetricQuerySchemaAggregationMode } from 'openapi/models/metricQuerySchemaAggregationMode';
const StyledMiniChartWrapper = styled(Box)(({ theme }) => ({
width: 80,
marginRight: theme.spacing(1),
border: `1px solid ${theme.palette.divider}`,
borderRadius: theme.shape.borderRadiusMedium,