1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

feat: rename impact metrics fields to match prometheus and grafana

This commit is contained in:
kwasniew 2025-09-04 10:59:48 +02:00
parent feb175bbe2
commit 135b9ea1c0
No known key found for this signature in database
GPG Key ID: 43A7CBC24C119560

View File

@ -69,7 +69,11 @@ export const ImpactMetricsControls: FC<ImpactMetricsControlsProps> = ({
control={ control={
<Checkbox <Checkbox
checked={formData.yAxisMin} checked={formData.yAxisMin}
onChange={(e) => actions.setYAxisMin(e.target.checked)} onChange={(e) =>
actions.setYAxisMin(
e.target.checked ? 'zero' : 'auto',
)
}
/> />
} }
label='Begin at zero' label='Begin at zero'