1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-05 05:17:40 +02:00

AC-2397 Migrate Reports home component (#8786)

* AC-2397 Migrate Reports home component

* AC-2397 Addressed review comments
This commit is contained in:
KiruthigaManivannan 2024-05-23 18:47:10 +05:30 committed by GitHub
parent cdaded2049
commit ad3c40297f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,16 @@
<ng-container *ngIf="homepage$ | async">
<app-header></app-header>
<p>{{ "orgsReportsDesc" | i18n }}</p>
<p bitTypography="body1">{{ "orgsReportsDesc" | i18n }}</p>
<app-report-list [reports]="reports$ | async"></app-report-list>
</ng-container>
<router-outlet></router-outlet>
<div class="row mt-4">
<div class="col">
<a bitButton routerLink="./" *ngIf="!(homepage$ | async)">
<i class="bwi bwi-angle-left" aria-hidden="true"></i>
{{ "backToReports" | i18n }}
</a>
</div>
<div class="tw-mt-4">
<a bitButton routerLink="./" *ngIf="!(homepage$ | async)">
<i class="bwi bwi-angle-left" aria-hidden="true"></i>
{{ "backToReports" | i18n }}
</a>
</div>