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

[SM-525] Fix projects not being active when on subroute (#4815)

* Move overview to separate route. Change nav-item to use subset instead of exact

* Add support for setting exactMatch in nav-item and nav-group

* Change default to subset
This commit is contained in:
Oscar Hinton
2023-02-21 19:04:35 +01:00
committed by GitHub
parent 3305c808d1
commit 72283d0a35
4 changed files with 18 additions and 3 deletions

View File

@@ -36,6 +36,12 @@ export class NavGroupComponent extends NavBaseComponent implements AfterContentI
*/
@Input()
open = false;
/**
* if `true`, use `exact` match for path instead of `subset`.
*/
@Input() exactMatch: boolean;
@Output()
openChange = new EventEmitter<boolean>();