Skip to content

Commit a53ffa2

Browse files
Merge pull request KelvinTegelaar#1675 from DChorn-ANS/dev-1
CellBooleanformatter fix
2 parents bb28a63 + 1ad2b71 commit a53ffa2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/tables/CellBoolean.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ export default function CellBoolean({
5252
cell.toLowerCase() === 'fail' ||
5353
cell.toLowerCase() === 'default' ||
5454
cell.toLowerCase() === 'false' ||
55-
cell.toLowerCase() === 'noncompliant'
55+
cell.toLowerCase() === 'noncompliant' ||
56+
cell.toLowerCase() === 'disabled'
5657
) {
5758
normalized = false
5859
}

0 commit comments

Comments
 (0)