mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Merge pull request #20805 from overleaf/dk-fix-focus-highlight
Fix focus highlight decoration for new review panel GitOrigin-RevId: c69ba8dd8527b6c3797b1e986cfd87c1ca87da6d
This commit is contained in:
parent
fac379b3a8
commit
175a4d024d
1 changed files with 3 additions and 1 deletions
|
@ -212,7 +212,9 @@ export const ranges = () => [
|
|||
const unresolvedComments = rangesData.threads
|
||||
? comments.filter(
|
||||
comment =>
|
||||
comment.op.t && !rangesData.threads[comment.op.t].resolved
|
||||
comment.op.t &&
|
||||
rangesData.threads[comment.op.t] &&
|
||||
!rangesData.threads[comment.op.t].resolved
|
||||
)
|
||||
: []
|
||||
|
||||
|
|
Loading…
Reference in a new issue