mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: database list checkboxes (#11068)
This commit is contained in:
@@ -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" />;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user