Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit d8222e5

Browse files
committed
working on tabindex
1 parent f27ef8a commit d8222e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/cellTypes/InOutLinksCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const InOutLinksCell = (mdProps: CellComponentProps) => {
2525
5
2626
);
2727
});
28-
return <span ref={mdRef} className={c("md_cell text-align-left")}></span>;
28+
return <span ref={mdRef} className={c("md_cell text-align-left")} />;
2929
};
3030

3131
export default InOutLinksCell;

src/components/cellTypes/TaskCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const TaskCell = (taskProps: CellComponentProps) => {
3939
}, [cell.getValue()]);
4040
const taskRef = useRef<HTMLDivElement>();
4141

42-
return <div ref={taskRef} className={c("md_cell text-align-left")}></div>;
42+
return <div ref={taskRef} className={c("md_cell text-align-left")} />;
4343
};
4444

4545
export default TaskCell;

0 commit comments

Comments
 (0)