Table: Fix incorrect condtition for rendering table filter (#29165)
This commit is contained in:
@@ -49,7 +49,7 @@ export const DefaultCell: FC<TableCellProps> = props => {
|
||||
{value}
|
||||
</a>
|
||||
)}
|
||||
{showFilters && cell.value && <FilterActions {...props} />}
|
||||
{showFilters && cell.value !== undefined && <FilterActions {...props} />}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user