Table: Fix incorrect condtition for rendering table filter (#29165)

This commit is contained in:
Dominik Prokop
2020-11-18 08:46:40 +01:00
committed by GitHub
parent bcb307fb1b
commit f28ba27ca2
@@ -49,7 +49,7 @@ export const DefaultCell: FC<TableCellProps> = props => {
{value}
</a>
)}
{showFilters && cell.value && <FilterActions {...props} />}
{showFilters && cell.value !== undefined && <FilterActions {...props} />}
</div>
);
};