mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
fix overlapping click-targets of alert state checkboxes (#10136)
using the same margin as checkboxes on top of /graph Signed-off-by: Victor Häggqvist <victor@snilius.com>
This commit is contained in:
parent
671bb0d5b8
commit
931acc3ee8
|
@ -63,7 +63,7 @@ const AlertsContent: FC<AlertsProps> = ({ groups = [], statsCount }) => {
|
|||
return (
|
||||
<Checkbox
|
||||
key={state}
|
||||
wrapperStyles={{ marginRight: 10 }}
|
||||
wrapperStyles={{ marginRight: 20 }}
|
||||
checked={filter[state]}
|
||||
id={`${state}-toggler`}
|
||||
onChange={toggleFilter(state)}
|
||||
|
|
|
@ -12,7 +12,7 @@ exports[`AlertsContent matches a snapshot 1`] = `
|
|||
onChange={[Function]}
|
||||
wrapperStyles={
|
||||
Object {
|
||||
"marginRight": 10,
|
||||
"marginRight": 20,
|
||||
}
|
||||
}
|
||||
>
|
||||
|
@ -35,7 +35,7 @@ exports[`AlertsContent matches a snapshot 1`] = `
|
|||
onChange={[Function]}
|
||||
wrapperStyles={
|
||||
Object {
|
||||
"marginRight": 10,
|
||||
"marginRight": 20,
|
||||
}
|
||||
}
|
||||
>
|
||||
|
@ -58,7 +58,7 @@ exports[`AlertsContent matches a snapshot 1`] = `
|
|||
onChange={[Function]}
|
||||
wrapperStyles={
|
||||
Object {
|
||||
"marginRight": 10,
|
||||
"marginRight": 20,
|
||||
}
|
||||
}
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue