RadzenPanelMenu: selected items are two instead of one

Hi,
I'm faceing a weird behavior with RadzenPanelMenu.
It seems to be a bug but may be that I'm wrong:

The wrong behavior Is that as you can see in the image below, I have two selected menu items: jobs and job positions:

image

The RadzenPanelMenu is configured in this way:

<RadzenPanelMenu Click="((args)=>DoNavigation(args))">
	<ChildContent>
                <RadzenPanelMenuItem Text="@Loc["Customers"]" Expanded="true">
                    <RadzenPanelMenuItem Text="@Loc["List"]" Path="/"></RadzenPanelMenuItem>
                    <RadzenPanelMenuItem Text="@Loc["Customers_Jobs"]" Path="/customers/jobs"></RadzenPanelMenuItem>
                    <RadzenPanelMenuItem Text="@Loc["Customers_Jobs_JobPositions"]" Path="/customers/jobs/jobPositions"></RadzenPanelMenuItem>
                    <RadzenPanelMenuItem Text="@Loc["Customers_Projects_SparePartsList"]" Path="/customers/spareparts" />
                </RadzenPanelMenuItem>
	</ChildContent>
</RadzenPanelMenu>

The problem happens when I click on the item with text: @Loc["Customers_Jobs"]

May be that the weird behavior comes from the fact that this menu item PATH contains part of the previous menu item PATH.

Hope it is clear
Thanks to support

Try to set the following attribute:

Thanks enchev,
Actually I didn't catch what is the attribute int the image you are talking about.
Can you show me the code please ?

Hi, Add this
Match="NavLinkMatchAll"
To the panel menu component as shown by @enchev