mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
Use correct variable for previous rule counts (#19218)
GitOrigin-RevId: 5245c49ca5ea5dd6599d9a05c5e61b2bd7caa544
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user