1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

[SM-1564] Fixing issues (#16295)

* Fixing issues

* fixes
This commit is contained in:
cd-bitwarden
2025-09-05 13:15:28 -04:00
committed by GitHub
parent e3ef530c17
commit 493788c9d0
10 changed files with 229 additions and 24 deletions

View File

@@ -67,9 +67,10 @@ export class ProjectComponent implements OnInit, OnDestroy {
);
this.project$ = combineLatest([this.route.params, currentProjectEdited]).pipe(
switchMap(([params, _]) => this.projectService.getByProjectId(params.projectId)),
switchMap(([params, currentProj]) =>
this.projectService.getByProjectId(params.projectId, currentProj != null),
),
);
const projectId$ = this.route.params.pipe(map((p) => p.projectId));
const organization$ = this.route.params.pipe(
concatMap((params) =>