templates/bundles/SyliusAdminBundle/Script/_scroll_to_selected_item.html.twig line 1

Open in your IDE?
  1. <script>
  2.     const currentAncestor = document.querySelector('.current_ancestor');
  3.     if (currentAncestor) {
  4.         currentAncestor.scrollIntoView(false);
  5.     }
  6. </script>