Sidebar active page display

Hey.
I use the sidebar on my page.
The problem is that the active page only displays the first tab, what am I doing wrong?

<RadzenSidebar>
    <ChildContent>
        <RadzenPanelMenu>
            <RadzenPanelMenuItem Text="@stringLocalizer["docNav"]"
                                 Path="/"
                                 Icon="insert_drive_file" />
            <RadzenPanelMenuItem Text="@stringLocalizer["ediNav"]"
                                 Icon="mail_outline">
                @{
                        @foreach (var eDI in eDIs)
                        {
                            <RadzenPanelMenuItem Text="@stringLocalizer[eDI]"
                                                 Path=@($"/edi/{eDI}")
                                                 Icon="location_on" />
                        }
                }
            </RadzenPanelMenuItem>
            <RadzenPanelMenuItem Text="@stringLocalizer["doccorrectionNav"]"
                                 Path="/dcn"
                                 Icon="sync" />
        </RadzenPanelMenu>
    </ChildContent>
</RadzenSidebar>

First tab selected
image
Last tab selected
image

I checked all the code already, I can’t understand why it works like this?

Check this thread: Panel Menu

Solution to the problem

image