mirror of
https://github.com/apache/superset.git
synced 2026-05-28 11:15:24 +00:00
chore(deps-dev): bump oxlint from 1.63.0 to 1.64.0 in /superset-frontend (#40160)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Claude <claude@anthropic.com>
This commit is contained in:
@@ -400,7 +400,7 @@ export default typedMemo(function DataTable<D extends object>({
|
||||
prepareRow(row);
|
||||
const { key: rowKey, ...rowProps } = row.getRowProps();
|
||||
return (
|
||||
<tr key={rowKey || row.id} {...rowProps} role="row">
|
||||
<tr key={rowKey || row.id} {...rowProps}>
|
||||
{row.cells.map(cell =>
|
||||
cell.render('Cell', { key: cell.column.id }),
|
||||
)}
|
||||
@@ -421,11 +421,7 @@ export default typedMemo(function DataTable<D extends object>({
|
||||
const { key: footerGroupKey, ...footerGroupProps } =
|
||||
footerGroup.getHeaderGroupProps();
|
||||
return (
|
||||
<tr
|
||||
key={footerGroupKey || footerGroup.id}
|
||||
{...footerGroupProps}
|
||||
role="row"
|
||||
>
|
||||
<tr key={footerGroupKey || footerGroup.id} {...footerGroupProps}>
|
||||
{footerGroup.headers.map(column =>
|
||||
column.render('Footer', { key: column.id }),
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user