We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaaed26 commit 889b433Copy full SHA for 889b433
src/views/tenant/standards/BestPracticeAnalyser.js
@@ -25,6 +25,7 @@ import {
25
faCheck,
26
faCross,
27
faTimes,
28
+ faExclamation,
29
} from '@fortawesome/free-solid-svg-icons'
30
import { CippTable, cellBooleanFormatter } from 'src/components/tables'
31
import { useSelector } from 'react-redux'
@@ -307,7 +308,9 @@ const BestPracticeAnalyser = () => {
307
308
color={graphrequest.data.Data[info.value] ? 'info' : 'warning'}
309
>
310
<FontAwesomeIcon
- icon={graphrequest.data.Data[info.value] ? faCheck : faTimes}
311
+ icon={
312
+ graphrequest.data.Data[info.value] ? faCheck : faExclamation
313
+ }
314
size="lg"
315
className="me-1"
316
/>
0 commit comments