Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/client/components/Results/DnsRecords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const styles = `
max-height: 50rem;
overflow-x: hidden;
overflow-y: auto;
overflow-wrap: anywhere;
}
`;

Expand Down
8 changes: 7 additions & 1 deletion src/client/components/Results/TlsConnection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Card } from 'client/components/Form/Card';
import Row from 'client/components/Form/Row';
import colors from 'client/styles/colors';

const yesNo = (v: boolean) => (v ? '✅ Yes' : '❌ No');

Expand Down Expand Up @@ -28,7 +29,12 @@ const TlsConnectionCard = (props: {
{d.alpnProtocol && <Row lbl="ALPN" val={d.alpnProtocol} />}
<Row lbl="Forward Secrecy" val={yesNo(!!d.forwardSecrecy)} />
<Row lbl="Session Resumption" val={yesNo(!!d.sessionResumption)} />
<Row lbl="OCSP Stapling" val={yesNo(!!d.ocspStapled)} />
<Row lbl="OCSP Stapling" val="">
<span className="lbl">OCSP Stapling</span>
<span className="val" style={{ color: colors.info }}>
{d.ocspStapled ? 'ⓘ Present' : 'ⓘ Not Present'} — may impact visitor privacy
</span>
</Row>
<Row
lbl="Certificate Trust"
val={d.authorized ? '✅ Trusted' : `❌ ${d.authError || 'Untrusted'}`}
Expand Down