mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Merge pull request #12870 from overleaf/td-history-prevent-diff-render-on-label-change
History migration: prevent unnecessary render when adding or deleting a label GitOrigin-RevId: acabd581403f17f863e3bd0c06d1fbd77fe22228
This commit is contained in:
@@ -187,12 +187,13 @@ function useHistory() {
|
||||
}
|
||||
}, [view, fetchNextBatchOfUpdates])
|
||||
|
||||
const { updateRange, comparing } = selection
|
||||
const { updateRange, comparing, files } = selection
|
||||
const { updates } = updatesInfo
|
||||
const filesEmpty = files.length === 0
|
||||
|
||||
// Load files when the update selection changes
|
||||
useEffect(() => {
|
||||
if (!updateRange) {
|
||||
if (!updateRange || !filesEmpty) {
|
||||
return
|
||||
}
|
||||
const { fromV, toV } = updateRange
|
||||
@@ -222,7 +223,7 @@ function useHistory() {
|
||||
.catch(error => {
|
||||
setError(error)
|
||||
})
|
||||
}, [updateRange, projectId, updates, comparing, setError])
|
||||
}, [updateRange, projectId, updates, comparing, setError, filesEmpty])
|
||||
|
||||
useEffect(() => {
|
||||
// Set update range if there isn't one and updates have loaded
|
||||
|
||||
Reference in New Issue
Block a user