Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(features): fix a bug related to the color of the total hours description component #3012

Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const HourItem = () => {
</Box>

{hoursCreditEnabled && (
<Typography className="body-small-regular" color="var(--grey-450)">
<Typography className="body-small-regular" color="var(--grey-350)">
{t('tr_includesServiceAndCredit')}
</Typography>
)}
Expand Down
3 changes: 2 additions & 1 deletion src/locales/en/ministry.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,6 @@
"tr_reportVerified": "Verified reports",
"tr_reportUnverified": "Reports awaiting verification",
"tr_unverifiedReportTitle": "You have unverified reports",
"tr_unverifiedReportDesc": "Open the <a title=''>Field service reports</a> page to check and verify reports from the publishers."
"tr_unverifiedReportDesc": "Open the <a title=''>Field service reports</a> page to check and verify reports from the publishers.",
"tr_pioneers": "Pioneers"
}