-
-
-
-
+
+
+
+
+
+ { !hideColumnHeaders && (
{table.getHeaderGroups().map(headerGroup => (
@@ -279,8 +301,9 @@ export const Grid = ({
))}
-
- {table.getRowModel().rows.length === 0 && (
+ )}
+
+ {table.getRowModel().rows.length === 0 && (
|
- )}
- {table.getRowModel().rows.map(row => (
-
- ))}
-
-
-
+ )}
+ {table.getRowModel().rows.map(row => (
+
+ ))}
+
+
-
- ), [table, modifiedCells, data, columns, rowSelection, internalSorting])
+
+ ), [table, modifiedCells, data, columns, rowSelection, internalSorting, highlightActiveCell ? activeCell : undefined])
function getModifiedRow (rowIndex: string): GridProps['modifiedCells'] {
return memoModifiedCells.filter(({ rowIndex: rIndex }) => String(rIndex) === String(rowIndex)) ?? []
diff --git a/assets/js/src/core/components/modal/form-modal/hooks/use-form-modal.tsx b/assets/js/src/core/components/modal/form-modal/hooks/use-form-modal.tsx
index 669c675c9..f2fee7daa 100644
--- a/assets/js/src/core/components/modal/form-modal/hooks/use-form-modal.tsx
+++ b/assets/js/src/core/components/modal/form-modal/hooks/use-form-modal.tsx
@@ -20,11 +20,6 @@ import { Form } from '@Pimcore/components/form/form'
let form: FormInstance