Use correct variable for previous rule counts (#19218)

GitOrigin-RevId: 5245c49ca5ea5dd6599d9a05c5e61b2bd7caa544
This commit is contained in:
Alf Eaton
2024-07-02 13:12:07 +01:00
committed by Copybot
parent cd0781c946
commit a074961dcb

View File

@@ -199,7 +199,7 @@ export const buildRuleDeltas = (ruleCounts, previousRuleCounts) => {
// keys that are no longer defined in the current log entries
for (const [key, value] of Object.entries(previousRuleCounts)) {
if (!(key in counts)) {
if (!(key in ruleCounts)) {
counts[key] = 0
counts[`delta_${key}`] = -value
}