From c2ecd79f213e60acec4a534156fc7e02b4a2868e Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 26 Feb 2019 23:50:15 +0100 Subject: [PATCH] pass params to child onUpdate --- src/ui/web/ListView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/web/ListView.js b/src/ui/web/ListView.js index ff1ba389..1a03d4db 100644 --- a/src/ui/web/ListView.js +++ b/src/ui/web/ListView.js @@ -73,7 +73,7 @@ export default class ListView { insertAt(this._root, toIdx, child.root()); } - onUpdate(i, value) { - this._childInstances[i].update(value); + onUpdate(i, value, params) { + this._childInstances[i].update(value, params); } }