Skip to content

Commit 77b407e

Browse files
committed
Clarify direct overlap label in gap analysis
1 parent b1fab7f commit 77b407e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const getInitialStandardsFromQuery = (searchParams: URLSearchParams) => {
5757
};
5858

5959
const GetStrength = (score) => {
60-
if (score == 0) return 'Direct';
60+
if (score == 0) return 'Shared CRE';
6161
if (score <= GA_STRONG_UPPER_LIMIT) return 'Strong';
6262
if (score >= 7) return 'Weak';
6363
return 'Average';
@@ -107,7 +107,7 @@ const GetResultLine = (path, gapAnalysis, key) => {
107107
<Popup.Content>
108108
<b>Generally: lower is better</b>
109109
<br />
110-
<b style={{ color: GetStrengthColor(0) }}>{GetStrength(0)}</b>: Directly Linked
110+
<b style={{ color: GetStrengthColor(0) }}>{GetStrength(0)}</b>: Standards share a directly linked CRE
111111
<br />
112112
<b style={{ color: GetStrengthColor(GA_STRONG_UPPER_LIMIT) }}>
113113
{GetStrength(GA_STRONG_UPPER_LIMIT)}

0 commit comments

Comments
 (0)