Skip to content

Commit 12ba0fe

Browse files
authored
Merge pull request #207 from vittorio/patch-1
Fix for lane styling
2 parents 430b85b + 14f1809 commit 12ba0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Lane.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class Lane extends Component {
269269
render() {
270270
const {loading, isDraggingOver} = this.state
271271
const {id, onLaneClick, onLaneScroll, onCardClick, onCardAdd, onCardDelete, ...otherProps} = this.props
272-
const allClassNames = classNames('react-trello-board', this.props.className || '')
272+
const allClassNames = classNames('react-trello-lane', this.props.className || '')
273273
return (
274274
<Section {...otherProps} key={id} onClick={() => onLaneClick && onLaneClick(id)} draggable={false} className={allClassNames}>
275275
{this.renderHeader()}

0 commit comments

Comments
 (0)