pass params to child onUpdate
This commit is contained in:
parent
8e7b26a6f7
commit
c2ecd79f21
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ export default class ListView {
|
||||||
insertAt(this._root, toIdx, child.root());
|
insertAt(this._root, toIdx, child.root());
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdate(i, value) {
|
onUpdate(i, value, params) {
|
||||||
this._childInstances[i].update(value);
|
this._childInstances[i].update(value, params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue