1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-17 20:31:50 +01: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"> <ng-container *ngIf="homepage$ | async">
<app-header></app-header> <app-header></app-header>
<p>{{ "orgsReportsDesc" | i18n }}</p> <p bitTypography="body1">{{ "orgsReportsDesc" | i18n }}</p>
<app-report-list [reports]="reports$ | async"></app-report-list> <app-report-list [reports]="reports$ | async"></app-report-list>
</ng-container> </ng-container>
<router-outlet></router-outlet> <router-outlet></router-outlet>
<div class="row mt-4"> <div class="tw-mt-4">
<div class="col"> <a bitButton routerLink="./" *ngIf="!(homepage$ | async)">
<a bitButton routerLink="./" *ngIf="!(homepage$ | async)"> <i class="bwi bwi-angle-left" aria-hidden="true"></i>
<i class="bwi bwi-angle-left" aria-hidden="true"></i> {{ "backToReports" | i18n }}
{{ "backToReports" | i18n }} </a>
</a>
</div>
</div> </div>