Skip to content

Commit 48b11dc

Browse files
authored
fix(eds-data-grid-react): Sortindicator was hidden on custom filters, but should be opposite (#3599)
1 parent 74d571f commit 48b11dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/eds-data-grid-react/src/components/TableHeaderCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export function TableHeaderCell<T>({ header, columnResizeMode }: Props<T>) {
132132
{flexRender(header.column.columnDef.header, header.getContext())}
133133
</span>
134134
</div>
135-
{header.column.columnDef.meta?.customFilterInput && (
135+
{!header.column.columnDef.meta?.customFilterInput && (
136136
<SortIndicator column={header.column} />
137137
)}
138138

0 commit comments

Comments
 (0)