...
|
...
|
@@ -30,8 +30,8 @@ export default class NewArrivalCell extends Component { |
|
|
|
|
|
shouldComponentUpdate(nextProps){
|
|
|
if (Immutable.is(nextProps.rowData, this.props.rowData)
|
|
|
&& nextProps.index, this.props.index
|
|
|
&& nextProps.similarIndex, this.props.similarIndex) {
|
|
|
&& nextProps.index == this.props.index
|
|
|
&& nextProps.similarIndex == this.props.similarIndex) {
|
|
|
return false;
|
|
|
} else {
|
|
|
return true;
|
...
|
...
|
|