File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import { getRefinedChecks } from "../utils/comparator/getRefinedChecks";
13
13
import { areEqualElements } from "../utils/comparator/areEqualElements" ;
14
14
15
15
import "../styles/ProjectDetails.css" ;
16
- import "../styles/ProjectComparator.css" ;
17
16
18
17
function ProjectComparator ( ) {
19
18
const params = useParams ( ) ;
@@ -138,12 +137,16 @@ function ProjectComparator() {
138
137
</ a >
139
138
</ p >
140
139
{ discrepancies . length > 0 && (
141
- < span
142
- className = "warning-message"
143
- data-testid = "discrepancies"
144
- > { `The report doesn't display certain checks (such as ${ discrepancies . join (
145
- ", " ,
146
- ) } ) because they haven't been included in the analysis of both commits.`} </ span >
140
+ < span className = "warning-message" data-testid = "discrepancies" >
141
+ { `Scorecard API missing: ${ discrepancies . join ( ", " ) } checks. See ` }
142
+ < a
143
+ href = "https://github.com/KoolTheba/openssf-scorecard-api-visualizer/tree/main#discrepancies-management"
144
+ target = "_blank"
145
+ rel = "noreferrer"
146
+ >
147
+ details
148
+ </ a >
149
+ </ span >
147
150
) }
148
151
< hr />
149
152
{ Array . isArray ( consolidatedData ) &&
You can’t perform that action at this time.
0 commit comments