fix(bee-table): bugfix 设置expandRowByClick,无法显示箭头,去掉 expandRowByClick 判断
This commit is contained in:
parent
4ec97d962d
commit
7a27bc5ed6
|
@ -622,7 +622,8 @@ var TableRow = function (_Component) {
|
|||
expandIcon
|
||||
));
|
||||
}
|
||||
var isColumnHaveExpandIcon = expandIconAsCell || expandRowByClick || showSum ? false : i === expandIndexInThisTable;
|
||||
// bugfix 设置expandRowByClick,无法显示箭头,去掉 expandRowByClick 判断
|
||||
var isColumnHaveExpandIcon = expandIconAsCell || showSum ? false : i === expandIndexInThisTable;
|
||||
cells.push(_react2["default"].createElement(_TableCell2["default"], {
|
||||
clsPrefix: clsPrefix,
|
||||
record: record,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bee-table",
|
||||
"version": "2.2.34",
|
||||
"version": "2.2.35",
|
||||
"description": "Table ui component for react",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
|
Loading…
Reference in New Issue