From de35df10d8e01a99bfdebfeed8945d19032c44e1 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 29 Jul 2019 20:03:22 +0200 Subject: [PATCH] fix test + bug in ConcatList update --- src/observable/list/ConcatList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/observable/list/ConcatList.js b/src/observable/list/ConcatList.js index aace70a3..6177f6f3 100644 --- a/src/observable/list/ConcatList.js +++ b/src/observable/list/ConcatList.js @@ -46,7 +46,7 @@ export default class ConcatList extends BaseObservableList { } onUpdate(index, value, params, sourceList) { - this.emitAdd(this._offsetForSource(sourceList) + index, value, params); + this.emitUpdate(this._offsetForSource(sourceList) + index, value, params); } onRemove(index, value, sourceList) {