fix: database list checkboxes (#11068)

This commit is contained in:
Moriah Kreeger
2020-09-25 16:28:22 -07:00
committed by GitHub
parent eeeb21077d
commit 374b06b4dd

View File

@@ -45,7 +45,7 @@ const IconBlack = styled(Icon)`
color: ${({ theme }) => theme.colors.grayscale.dark1};
`;
function BooleanDisplay(value: any) {
function BooleanDisplay({ value }: { value: Boolean }) {
return value ? <IconBlack name="check" /> : <IconBlack name="cancel-x" />;
}