Skip to content

Commit

Permalink
fix: database list checkboxes (#11068)
Browse files Browse the repository at this point in the history
  • Loading branch information
riahk authored Sep 25, 2020
1 parent eeeb210 commit 374b06b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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" />;
}

Expand Down

0 comments on commit 374b06b

Please sign in to comment.