mirror of
https://github.com/prometheus/prometheus.git
synced 2026-06-04 22:22:39 -04:00
Fix rules UI to display correct value for 'keepFiringFor'
Signed-off-by: Mustafain Ali Khan <mustalik@amazon.com>
This commit is contained in:
parent
f71ec8d5d5
commit
b7fc01df0e
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ const RuleDefinition: FC<{ rule: Rule }> = ({ rule }) => {
|
|||
styles={{ label: { textTransform: "none" } }}
|
||||
leftSection={<IconClockPlay style={badgeIconStyle} />}
|
||||
>
|
||||
keep_firing_for: {formatPrometheusDuration(rule.duration * 1000)}
|
||||
keep_firing_for: {formatPrometheusDuration(rule.keepFiringFor * 1000)}
|
||||
</Badge>
|
||||
)}
|
||||
</Group>
|
||||
|
|
|
|||
Loading…
Reference in a new issue