mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Use correct variable for previous rule counts (#19218)
GitOrigin-RevId: 5245c49ca5ea5dd6599d9a05c5e61b2bd7caa544
This commit is contained in:
parent
cba729f2bf
commit
8abda70bfd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue