1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

[PM-1415] [BEEEP] Angular 15 (#4719)

* Upgrade Angular to 15

* Remove attr.allow for webauthn
This commit is contained in:
Oscar Hinton
2023-03-22 18:26:04 +01:00
committed by GitHub
parent 4548defc49
commit 23c4d45285
16 changed files with 11967 additions and 10265 deletions

View File

@@ -3,6 +3,7 @@ import {
Component,
ContentChildren,
EventEmitter,
forwardRef,
Input,
Output,
QueryList,
@@ -16,7 +17,7 @@ import { NavItemComponent } from "./nav-item.component";
templateUrl: "./nav-group.component.html",
})
export class NavGroupComponent extends NavBaseComponent implements AfterContentInit {
@ContentChildren(NavGroupComponent, {
@ContentChildren(forwardRef(() => NavGroupComponent), {
descendants: true,
})
nestedGroups!: QueryList<NavGroupComponent>;