Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#1675 from DChorn-ANS/dev-1
Browse files Browse the repository at this point in the history
CellBooleanformatter fix
  • Loading branch information
KelvinTegelaar authored Aug 5, 2023
2 parents bb28a63 + 1ad2b71 commit a53ffa2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/tables/CellBoolean.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export default function CellBoolean({
cell.toLowerCase() === 'fail' ||
cell.toLowerCase() === 'default' ||
cell.toLowerCase() === 'false' ||
cell.toLowerCase() === 'noncompliant'
cell.toLowerCase() === 'noncompliant' ||
cell.toLowerCase() === 'disabled'
) {
normalized = false
}
Expand Down

0 comments on commit a53ffa2

Please sign in to comment.