mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-12 00:35:03 +00:00
[web] SL history: fix incorrect var
->let
replacement (#8994)
GitOrigin-RevId: ea90be7d89f6c31156a30af3278218f93f1d5c6a
This commit is contained in:
parent
7d77ddb9fc
commit
e9f7f19ca0
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue