diff --git a/src/controllers/Lane.js b/src/controllers/Lane.js index 45bf08aa7..46c59cb7e 100644 --- a/src/controllers/Lane.js +++ b/src/controllers/Lane.js @@ -253,14 +253,15 @@ class Lane extends Component { } = this.props const allClassNames = classNames('react-trello-lane', this.props.className || '') const showFooter = collapsibleLanes && cards.length > 0 + const _otherProps = {...otherProps, title:''}; return ( onLaneClick && onLaneClick(id)} draggable={false} className={allClassNames}> - {this.renderHeader({id, cards, ...otherProps})} + {this.renderHeader({id, cards, ..._otherProps})} {this.renderDragContainer(isDraggingOver)} {loading && } {showFooter && }