1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

[CL-119] rename slots in nav-item (#6070)

This commit is contained in:
Will Martin
2023-08-21 13:25:57 -04:00
committed by GitHub
parent 203667f3f4
commit cb1b65081a
3 changed files with 7 additions and 7 deletions

View File

@@ -29,10 +29,10 @@
</ng-template>
<!-- Show toggle to the left for trees otherwise to the right -->
<ng-container slot-start *ngIf="variant === 'tree'">
<ng-container slot="start" *ngIf="variant === 'tree'">
<ng-container *ngTemplateOutlet="button"></ng-container>
</ng-container>
<ng-container slot-end *ngIf="variant !== 'tree'">
<ng-container slot="end" *ngIf="variant !== 'tree'">
<ng-container *ngTemplateOutlet="button"></ng-container>
</ng-container>
</bit-nav-item>