We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c37e7f commit 2c20eccCopy full SHA for 2c20ecc
1 file changed
src/Body/MeasureRow.tsx
@@ -20,7 +20,13 @@ export default function MeasureRow({
20
const ref = React.useRef<HTMLTableRowElement>(null);
21
22
return (
23
- <tr aria-hidden="true" className={`${prefixCls}-measure-row`} style={{ height: 0 }} ref={ref}>
+ <tr
24
+ aria-hidden="true"
25
+ tabIndex={-1}
26
+ className={`${prefixCls}-measure-row`}
27
+ style={{ height: 0 }}
28
+ ref={ref}
29
+ >
30
<ResizeObserver.Collection
31
onBatchResize={infoList => {
32
if (isVisible(ref.current)) {
0 commit comments