Skip to content

nsRouterLinkActive not working when nsRouterLink is on same element #2321

Closed
@yvdv-one

Description

@yvdv-one

Version: "@nativescript/angular": "~10.1.7",

When I put the nsRouterLink on the same element as the nsRouterLinkActive, the style class is not added.
When I put it on an element within, it works as expected.

<GridLayout [nsRouterLink]="/user/bob" nsRouterLinkActive="highlight" [nsRouterLinkActiveOptions]="{exact: true}"> <Label [text]="name" class="menu-text"></Label> </GridLayout>
does not work!

<GridLayout nsRouterLinkActive="highlight" [nsRouterLinkActiveOptions]="{exact: true}"> <Label [nsRouterLink]="/user/bob" [text]="name" class="menu-text"></Label> </GridLayout>
works! (and can be used as a workaround for now)

Maybe this has to do with change in angular?: angular/angular#10098

Best regards,
Yves.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions