[web] SL history: fix incorrect var->let replacement (#8994)

GitOrigin-RevId: ea90be7d89f6c31156a30af3278218f93f1d5c6a
This commit is contained in:
Miguel Serrano 2022-07-27 13:25:59 +02:00 committed by Copybot
parent 7d77ddb9fc
commit e9f7f19ca0

View file

@ -62,7 +62,11 @@ App.controller('HistoryListController', function ($scope, $modal, ide) {
return (() => {
const result = []
for (const update of Array.from($scope.history.updates)) {
let inSelection
// replacing this declaration with `let` introduces a bug in history point selection:
// https://github.com/overleaf/overleaf/issues/1035
// eslint-disable-next-line no-var
var inSelection
if (update.selectedTo) {
inSelection = true
beforeSelection = false