解决record为空时的报错问题
This commit is contained in:
parent
c4dbadb2ee
commit
35347335e6
|
@ -517,7 +517,7 @@ class TableRow extends Component{
|
|||
if (!visible) {
|
||||
style.display = 'none';
|
||||
}
|
||||
if(record._checked){
|
||||
if(record && record._checked){
|
||||
className += ' selected';
|
||||
}
|
||||
return (
|
||||
|
|
Loading…
Reference in New Issue