Skip to content

Commit 889b433

Browse files
minor fixes
1 parent eaaed26 commit 889b433

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/views/tenant/standards/BestPracticeAnalyser.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import {
2525
faCheck,
2626
faCross,
2727
faTimes,
28+
faExclamation,
2829
} from '@fortawesome/free-solid-svg-icons'
2930
import { CippTable, cellBooleanFormatter } from 'src/components/tables'
3031
import { useSelector } from 'react-redux'
@@ -307,7 +308,9 @@ const BestPracticeAnalyser = () => {
307308
color={graphrequest.data.Data[info.value] ? 'info' : 'warning'}
308309
>
309310
<FontAwesomeIcon
310-
icon={graphrequest.data.Data[info.value] ? faCheck : faTimes}
311+
icon={
312+
graphrequest.data.Data[info.value] ? faCheck : faExclamation
313+
}
311314
size="lg"
312315
className="me-1"
313316
/>

0 commit comments

Comments
 (0)