Skip to content

Commit b80b72a

Browse files
committed
feat: review
1 parent 45a6c49 commit b80b72a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Body/BodyRow.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function BodyRow<RecordType extends { children?: readonly RecordType[] }>(
172172
)}
173173
style={{ ...style, ...rowProps?.style }}
174174
>
175-
{flattenColumns.map((column, colIndex) => {
175+
{flattenColumns.map((column: ColumnType<RecordType>, colIndex) => {
176176
const { render, dataIndex, className: columnClassName } = column;
177177

178178
const { key, fixedInfo, appendCellNode, additionalCellProps } = getCellProps(
@@ -183,9 +183,6 @@ function BodyRow<RecordType extends { children?: readonly RecordType[] }>(
183183
index,
184184
getRowKey,
185185
);
186-
if (column.title === '手机号') {
187-
// console.log('additionalCellProps', column.title, additionalCellProps);
188-
}
189186
return (
190187
<Cell<RecordType>
191188
className={columnClassName}

0 commit comments

Comments
 (0)