From 41586fafc730d1cb57e166a923cbc0d51dd56d4a Mon Sep 17 00:00:00 2001 From: tuti Date: Fri, 24 Jul 2020 13:04:45 -0300 Subject: [PATCH] Removed title param/prop from Section and Header lane HTLM tags. --- src/controllers/Lane.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 && }