+
-
diff --git a/apps/web/src/app/organizations/reporting/reporting.component.ts b/apps/web/src/app/organizations/reporting/reporting.component.ts
index 29ae5fe723..4173833b61 100644
--- a/apps/web/src/app/organizations/reporting/reporting.component.ts
+++ b/apps/web/src/app/organizations/reporting/reporting.component.ts
@@ -11,13 +11,14 @@ import { Organization } from "@bitwarden/common/models/domain/organization";
export class ReportingComponent implements OnInit {
organization: Organization;
accessEvents = false;
+ showLeftNav = true;
constructor(private route: ActivatedRoute, private organizationService: OrganizationService) {}
ngOnInit() {
this.route.parent.params.subscribe(async (params) => {
this.organization = await this.organizationService.get(params.organizationId);
- this.accessEvents = this.organization.useEvents;
+ this.accessEvents = this.showLeftNav = this.organization.useEvents;
});
}
}