mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-28 04:02:21 -04:00
Merge pull request #16211 from mustafain117/ui-bug-fix
Fix rules UI to display correct value for 'keepFiringFor'
This commit is contained in:
commit
7b4f093641
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