Skip to content

Commit 14f1809

Browse files
authored
Fix for lane styling
Looks like you used wrong classname for lane
1 parent be98cc9 commit 14f1809

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
@@ -264,7 +264,7 @@ class Lane extends Component {
264264
render() {
265265
const {loading, isDraggingOver} = this.state
266266
const {id, onLaneClick, onLaneScroll, onCardClick, onCardAdd, onCardDelete, ...otherProps} = this.props
267-
const allClassNames = classNames('react-trello-board', this.props.className || '')
267+
const allClassNames = classNames('react-trello-lane', this.props.className || '')
268268
return (
269269
<Section {...otherProps} key={id} onClick={() => onLaneClick && onLaneClick(id)} draggable={false} className={allClassNames}>
270270
{this.renderHeader()}

0 commit comments

Comments
 (0)