File tree Expand file tree Collapse file tree
src/client/components/Results Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { Card } from 'client/components/Form/Card' ;
22import Row from 'client/components/Form/Row' ;
3+ import colors from 'client/styles/colors' ;
34
45const yesNo = ( v : boolean ) => ( v ? 'β
Yes' : 'β No' ) ;
56
@@ -30,7 +31,12 @@ const TlsConnectionCard = (props: {
3031 { d . alpnProtocol && < Row lbl = "ALPN" val = { d . alpnProtocol } /> }
3132 < Row lbl = "Forward Secrecy" val = { yesNo ( ! ! d . forwardSecrecy ) } />
3233 < Row lbl = "Session Resumption" val = { yesNo ( ! ! d . sessionResumption ) } />
33- < Row lbl = "OCSP Stapling" val = { ocspStatus ( ! ! d . ocspStapled ) } />
34+ < Row lbl = "OCSP Stapling" val = "" >
35+ < span className = "lbl" > OCSP Stapling</ span >
36+ < span className = "val" style = { { color : colors . info } } >
37+ { d . ocspStapled ? 'β Present' : 'β Not Present' } β may impact visitor privacy
38+ </ span >
39+ </ Row >
3440 < Row
3541 lbl = "Certificate Trust"
3642 val = { d . authorized ? 'β
Trusted' : `β ${ d . authError || 'Untrusted' } ` }
You canβt perform that action at this time.
0 commit comments