Custom Menubar aria-current=true not showing

Hi,

when using a custom menu, it seems that the aria-current is not active even when the tab in the menu bar is.
Overview, users and system is still working, but the custom links are not.

'panel' => [
        'css' => 'assets/css/custom-panel.css',
        'slug' => 'adminpanel',
        'favicon' => 'assets/images/paperwork.ico',
        'install' => false,
        'frameAncestors' => ['self'],

        'menu' => [
            'site' => [
                'label' => 'Overview'
            ],
            'informations' => [
                'icon'  => 'pen',
                'label' => 'Informations',
                'link'  => 'pages/informations'
            ],
            'gallery' => [
                'icon'  => 'brush',
                'label' => 'Galerie',
                'link'  => 'pages/gallery'
            ],
            'About’ => [
                'icon'  => 'image',
                'label' => 'About’,
                'link'  => 'pages/about'
            ],

            '-',
            'users',
            'system'
        ]

    ],

You haven’t defined a current option for your custom menu entries: https://getkirby.com/docs/reference/system/options/panel/panel-menu#highlight-current

my bad…
Thanks.