Skip to content

Commit 268a551

Browse files
Adam PrinsAdam Prins
authored andcommitted
change guidance page text
1 parent f6457a8 commit 268a551

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

frontend/src/guidance/ScanCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function ScanCard({ scanType, scanData, status }) {
1515
: ''
1616
const cardDescription =
1717
scanType === 'web'
18-
? t`Results for scans of web technologies (SSL, HTTPS).`
18+
? t`Results for scans of web technologies (HTTPS, Protocols, and Ciphers).`
1919
: scanType === 'email'
2020
? t`Results for scans of email technologies (DMARC, SPF, DKIM).`
2121
: ''

frontend/src/guidance/ScanCategoryDetails.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,13 @@ export function ScanCategoryDetails({ categoryName, categoryData }) {
205205
)
206206

207207
return (
208-
<AccordionItem buttonLabel={categoryName.toUpperCase()}>
208+
<AccordionItem
209+
buttonLabel={
210+
categoryName === 'ssl'
211+
? 'Protocols and Ciphers'
212+
: categoryName.toUpperCase()
213+
}
214+
>
209215
{webSummary}
210216
<Divider />
211217
{tagDetails}

0 commit comments

Comments
 (0)