Ensure client preview indicator doesn't crash when encountering incorrect node types
This commit is contained in:
parent
01b28f358a
commit
9e24a76810
|
@ -61,7 +61,7 @@
|
|||
// Sanity limit of 100 active indicators
|
||||
const children = Array.from(parents)
|
||||
.map(parent => parent?.childNodes?.[0])
|
||||
.filter(child => child != null)
|
||||
.filter(node => node?.nodeType === 1)
|
||||
.slice(0, 100)
|
||||
|
||||
// If there aren't any nodes then reset
|
||||
|
|
Loading…
Reference in New Issue