Fix comment not outlined again (#1902)
This commit is contained in:
parent
a4cce7afed
commit
3cdf5c9451
@ -130,6 +130,10 @@ export default function Comment ({
|
|||||||
// HACK wait for other comments to uncollapse if they're collapsed
|
// HACK wait for other comments to uncollapse if they're collapsed
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
ref.current.scrollIntoView({ behavior: 'instant', block: 'start' })
|
ref.current.scrollIntoView({ behavior: 'instant', block: 'start' })
|
||||||
|
// make sure we can outline a comment again if it was already outlined before
|
||||||
|
ref.current.addEventListener('animationend', () => {
|
||||||
|
ref.current.classList.remove('outline-it')
|
||||||
|
}, { once: true })
|
||||||
ref.current.classList.add('outline-it')
|
ref.current.classList.add('outline-it')
|
||||||
}, 100)
|
}, 100)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user