implement table list callbacks

This commit is contained in:
jeffvli
2025-10-04 15:10:27 -07:00
parent a1a5dbc00e
commit 7901ab1037
4 changed files with 226 additions and 35 deletions
@@ -4,5 +4,5 @@ import {
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
export const RowIndexColumn = (props: ItemTableListInnerColumn) => {
return <TableColumnTextContainer {...props}>{props.rowIndex + 1}</TableColumnTextContainer>;
return <TableColumnTextContainer {...props}>{props.rowIndex}</TableColumnTextContainer>;
};