bugfix 设置expandRowByClick,无法显示箭头,去掉 expandRowByClick 判断
This commit is contained in:
parent
8ba7a7b552
commit
4ec97d962d
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -499,7 +499,8 @@ class TableRow extends Component{
|
|||
</td>
|
||||
);
|
||||
}
|
||||
const isColumnHaveExpandIcon = (expandIconAsCell || expandRowByClick || showSum)
|
||||
// bugfix 设置expandRowByClick,无法显示箭头,去掉 expandRowByClick 判断
|
||||
const isColumnHaveExpandIcon = (expandIconAsCell || showSum)
|
||||
? false : (i === expandIndexInThisTable);
|
||||
cells.push(
|
||||
<TableCell
|
||||
|
|
Loading…
Reference in New Issue