From 3cdf5c945156385dd7da5e27dba88b5c20a988ce Mon Sep 17 00:00:00 2001 From: ekzyis Date: Thu, 13 Feb 2025 18:46:35 +0100 Subject: [PATCH] Fix comment not outlined again (#1902) --- components/comment.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/comment.js b/components/comment.js index 86654dcb..67b4bc84 100644 --- a/components/comment.js +++ b/components/comment.js @@ -130,6 +130,10 @@ export default function Comment ({ // HACK wait for other comments to uncollapse if they're collapsed setTimeout(() => { 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') }, 100) }