ContextMenu focus on first item with Vaadin 13.0.1

Hello,

by default it seems the first item is getting the focus when opening. This is a different behavior than Vaadin 12.
The impact is how the menu is rendered in the browser. I added a attachment and snippet to reproduce.

Icon verticalDots = new Icon(VaadinIcon.ELLIPSIS_DOTS_V);
ContextMenu menu = new ContextMenu();
menu.setTarget(verticalDots);
menu.setOpenOnClick(true);

menu.addItem("Hello World", e -> Notification.show(e.getSource().getText()));
menu.addItem("Hello Again", e -> Notification.show(e.getSource().getText()));

Any ideas to get it working like Vaadin 12.x

17563481.png