mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Alerting: fix alert creation interval layout bug (#48112)
This commit is contained in:
parent
5f83fc3c61
commit
2713de2bd1
@ -57,7 +57,10 @@ export const GrafanaConditionsStep: FC = () => {
|
|||||||
return (
|
return (
|
||||||
<RuleEditorSection stepNo={3} title="Define alert conditions">
|
<RuleEditorSection stepNo={3} title="Define alert conditions">
|
||||||
<ConditionField />
|
<ConditionField />
|
||||||
<Field label="Evaluate">
|
<Field
|
||||||
|
label="Evaluate"
|
||||||
|
description="Evaluation interval applies to every rule within a group. It can overwrite the interval of an existing alert rule."
|
||||||
|
>
|
||||||
<div className={styles.flexRow}>
|
<div className={styles.flexRow}>
|
||||||
<InlineLabel
|
<InlineLabel
|
||||||
htmlFor={evaluateEveryId}
|
htmlFor={evaluateEveryId}
|
||||||
@ -66,12 +69,7 @@ export const GrafanaConditionsStep: FC = () => {
|
|||||||
>
|
>
|
||||||
Evaluate every
|
Evaluate every
|
||||||
</InlineLabel>
|
</InlineLabel>
|
||||||
<Field
|
|
||||||
label="Evaluate"
|
|
||||||
description="Evaluation internal applies to every rule within a group. It can overwrite the interval of an existing alert rule."
|
|
||||||
>
|
|
||||||
<Input id={evaluateEveryId} width={8} {...register('evaluateEvery', evaluateEveryValidationOptions)} />
|
<Input id={evaluateEveryId} width={8} {...register('evaluateEvery', evaluateEveryValidationOptions)} />
|
||||||
</Field>
|
|
||||||
<InlineLabel
|
<InlineLabel
|
||||||
htmlFor={evaluateForId}
|
htmlFor={evaluateForId}
|
||||||
width={7}
|
width={7}
|
||||||
|
Loading…
Reference in New Issue
Block a user