We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 314b9c2 commit 66ae127Copy full SHA for 66ae127
1 file changed
src/components/Lane.js
@@ -107,11 +107,12 @@ class Lane extends Component {
107
}
108
109
renderNewCard = () => {
110
- const {newCardTemplate} = this.props
+ const {newCardTemplate, id} = this.props
111
if (newCardTemplate) {
112
const newCardWithProps = React.cloneElement(newCardTemplate, {
113
onCancel: this.hideEditableCard,
114
- onAdd: this.addNewCard
+ onAdd: this.addNewCard,
115
+ laneId: id
116
})
117
return <span>{newCardWithProps}</span>
118
} else {
0 commit comments