diff --git a/apps/client/src/ee/base/components/grid/grid-row.tsx b/apps/client/src/ee/base/components/grid/grid-row.tsx index a9eed6c7b..eea55cb7f 100644 --- a/apps/client/src/ee/base/components/grid/grid-row.tsx +++ b/apps/client/src/ee/base/components/grid/grid-row.tsx @@ -160,12 +160,15 @@ export const GridRow = memo(function GridRow({ data-index={rowIndex} className={`${classes.row} ${classes.virtualRow} ${isDragging ? classes.rowDragging : ""} ${dropIndicatorClass} ${isSelected ? classes.rowSelected : ""}`} role="row" + aria-rowindex={rowIndex + 1} + aria-selected={isSelected} > - {row.getVisibleCells().map((cell) => ( + {row.getVisibleCells().map((cell, colIndex) => (