1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

[PM-27737] text and triangle color (#17198)

This commit is contained in:
Alex
2025-11-10 10:33:43 -05:00
committed by GitHub
parent e7995256cd
commit 2f3f2c2105
2 changed files with 5 additions and 2 deletions

View File

@@ -349,6 +349,9 @@
"applicationsNeedingReview": {
"message": "Applications needing review"
},
"newApplicationsCardTitle": {
"message": "Review new applications"
},
"newApplicationsWithCount": {
"message": "$COUNT$ new applications",
"placeholders": {

View File

@@ -46,7 +46,7 @@
<li class="tw-col-span-1">
<dirt-activity-card
[title]="'applicationsNeedingReview' | i18n"
[title]="'newApplicationsCardTitle' | i18n"
[cardMetrics]="
isAllCaughtUp
? ('allCaughtUp' | i18n)
@@ -58,7 +58,7 @@
: ('newApplicationsDescription' | i18n)
"
[iconClass]="isAllCaughtUp ? 'bwi-check-circle' : 'bwi-exclamation-triangle'"
[iconColorClass]="isAllCaughtUp ? 'tw-text-success' : 'tw-text-muted'"
[iconColorClass]="isAllCaughtUp ? 'tw-text-success' : 'tw-text-warning'"
[buttonText]="isAllCaughtUp ? '' : ('reviewNow' | i18n)"
[buttonType]="'primary'"
(buttonClick)="onReviewNewApplications()"