Fix comment not outlined again (#1902)

This commit is contained in:
ekzyis 2025-02-13 18:46:35 +01:00 committed by GitHub
parent a4cce7afed
commit 3cdf5c9451
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)
} }