Side Navigation collapse bug fix

This commit is contained in:
ShahanaFarooqui 2026-01-30 15:18:27 -08:00 committed by Suheb
parent 4e08fd7cba
commit bdf9c832dd
4 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -64,3 +64,4 @@ RTL-Config-Signet.json
RTL-Config-Testnet.json RTL-Config-Testnet.json
RTL-Config-All.json RTL-Config-All.json
.aider* .aider*
.continue

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -9,7 +9,7 @@
</mat-select> </mat-select>
<mat-divider class="w-100" /> <mat-divider class="w-100" />
<mat-tree *ngIf="selNode.settings?.lnServerUrl" #tree [dataSource]="navMenus" [treeControl]="treeControlNested"> <mat-tree *ngIf="selNode.settings?.lnServerUrl" #tree [dataSource]="navMenus" [treeControl]="treeControlNested">
<mat-tree-node *matTreeNodeDef="let node" routerLink="{{node.link}}" routerLinkActive="active-link"> <mat-tree-node *matTreeNodeDef="let node" routerLink="{{node.link}}" routerLinkActive="active-link" matTreeNodeToggle>
<div tabindex="2" (click)="onChildNavClicked(node)"> <div tabindex="2" (click)="onChildNavClicked(node)">
<div fxLayout="row" fxFlex="100" fxLayoutAlign="start center"> <div fxLayout="row" fxFlex="100" fxLayoutAlign="start center">
<span *ngIf="node.iconType === 'SVG'" class="fa-icon-small mr-2" fxLayout="row" fxFlex="100" fxLayoutAlign="start center"><ng-container [ngTemplateOutlet]="node.icon === 'boltzIconBlock' ? boltzIconBlock : null" /></span> <span *ngIf="node.iconType === 'SVG'" class="fa-icon-small mr-2" fxLayout="row" fxFlex="100" fxLayoutAlign="start center"><ng-container [ngTemplateOutlet]="node.icon === 'boltzIconBlock' ? boltzIconBlock : null" /></span>