Skip to content

Commit 21d3451

Browse files
authored
CCM-8074: accessibility issue fix (#227)
1 parent 17eed32 commit 21d3451

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lambdas/backend-api/src/__tests__/email/__snapshots__/email-template.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ exports[`generate email content 1`] = `
9292
<body style="width: 100% !important; margin: 0; padding: 0; line-height: 1.5; background-color: #fff;">
9393
<table style="margin: 0 auto; width: 100%; max-width: 450px; table-layout: fixed; padding: 12px;">
9494
<tr>
95-
<th style="height: 50px; width: 80px;">
95+
<th style="height: 50px; width: 80px;" id="nhs-logo-header">
9696
<img src="data:image/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAATYAAAE2CAYAAADrvL6pAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ
9797
bWFnZVJlYWR5ccllPAAAFO1JREFUeNrs3U9oXWUax/HTEEEFMzU4FRR6MziLFBzSVpyFqM0gTJfG
9898
rYJGUHA1Vl1VRqwI05Uz6WwcqGC70G3rTgUx0dIBZZqWFsxiCsmAglXaWmEqKHTuc9KjaeYm933v

lambdas/backend-api/src/email/email-template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<body style="width: 100% !important; margin: 0; padding: 0; line-height: 1.5; background-color: #fff;">
9090
<table style="margin: 0 auto; width: 100%; max-width: 450px; table-layout: fixed; padding: 12px;">
9191
<tr>
92-
<th style="height: 50px; width: 80px;">
92+
<th style="height: 50px; width: 80px;" id="nhs-logo-header">
9393
<img src="data:image/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAATYAAAE2CAYAAADrvL6pAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ
9494
bWFnZVJlYWR5ccllPAAAFO1JREFUeNrs3U9oXWUax/HTEEEFMzU4FRR6MziLFBzSVpyFqM0gTJfG
9595
rYJGUHA1Vl1VRqwI05Uz6WwcqGC70G3rTgUx0dIBZZqWFsxiCsmAglXaWmEqKHTuc9KjaeYm933v

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"scripts": {
1313
"build": "npm run build --workspace frontend --if-present",
14-
"copy-files-for-testing": "mkdir -p frontend/public/testing && cp ./frontend/amplify/functions/send-email/email-template.html ./frontend/public/testing/email-template.html",
14+
"copy-files-for-testing": "mkdir -p frontend/public/testing && cp ./lambdas/backend-api/src/email/email-template.html ./frontend/public/testing/email-template.html",
1515
"create-backend-sandbox": "./scripts/create_backend_sandbox.sh",
1616
"destroy-backend-sandbox": "./scripts/destroy_backend_sandbox.sh",
1717
"start": "npm run start --workspace frontend",

0 commit comments

Comments
 (0)