fix: scrollIntoView is not a function in lab page (#6266)

This commit is contained in:
Dotan Simha 2025-01-05 16:32:26 +07:00 committed by GitHub
parent 039c66bd24
commit c3c45d8d57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -298,8 +298,11 @@ export function Content() {
setAccordionValue([initialSelectedCollection]);
setTimeout(() => {
const link = containerRef.current!.querySelector(`a[href$="${queryParamsOperationId}"]`);
link!.scrollIntoView();
setIsScrolled(true);
if (link) {
link.scrollIntoView();
setIsScrolled(true);
}
}, 150);
}, [initialSelectedCollection]);