Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Komarov committed May 17, 2023
1 parent 9fde525 commit 3e8c7d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/Components/FilterCell/FilterCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ const FilterCell: React.FunctionComponent<IFilterRowEditorProps> = (props) => {
return (
<td {...elementAttributes}>
{
column.isFilterable === false
? <></>
: content
? content
column.isFilterable === false
? <></>
: content
? content
: (
<FilterRowDataType
{...props}
Expand Down

0 comments on commit 3e8c7d9

Please sign in to comment.