#how change sideNav content?

7 messages · Page 1 of 1 (latest)

tribal knot
#

see below

#

i have the following

#
<mat-sidenav-container (backdropClick)="close()" [ngClass]="{ 'logged-user': userLogged }">
    <mat-sidenav #sidenav (keydown.escape)="close()" class="principal">
        <app-side-nav *ngIf="!sideNavSub || sideNavSub && !sideNavSub.showSideNav"></app-side-nav>
        <app-side-nav-sub *ngIf="sideNavSub && sideNavSub.showSideNav"></app-side-nav-sub> 
    </mat-sidenav>

    <mat-sidenav-content [ngClass]="{ 'logged-user': userLogged }">
        <router-outlet></router-outlet>
    </mat-sidenav-content>
</mat-sidenav-container>
#

it's basically a common side nav, but idk how to find where it takes the values

#

the output is this

spring pendant
tribal knot
#

i already found how that text was get, it was from another file (i searched the words on the project and find where it was)