rez-table-listing-mui 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -97,7 +97,6 @@ function TableHead<T>({
|
|
|
97
97
|
key={header?.id}
|
|
98
98
|
colSpan={header.colSpan}
|
|
99
99
|
compact={featureOptions.compactTable}
|
|
100
|
-
onClick={handleHover}
|
|
101
100
|
style={{
|
|
102
101
|
...getColumnPinningStyles(header.column),
|
|
103
102
|
width: `${header.column.getSize()}px`,
|
|
@@ -106,7 +105,7 @@ function TableHead<T>({
|
|
|
106
105
|
}}
|
|
107
106
|
>
|
|
108
107
|
{header.isPlaceholder ? null : (
|
|
109
|
-
<TableHeadContent>
|
|
108
|
+
<TableHeadContent onClick={handleHover}>
|
|
110
109
|
<TableHeadSort sortable={header.column.getCanSort()}>
|
|
111
110
|
{flexRender(
|
|
112
111
|
header.column.columnDef.header,
|