fix test + bug in ConcatList update

This commit is contained in:
Bruno Windels 2019-07-29 20:03:22 +02:00
parent b723ab4cef
commit de35df10d8

View File

@ -46,7 +46,7 @@ export default class ConcatList extends BaseObservableList {
} }
onUpdate(index, value, params, sourceList) { 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) { onRemove(index, value, sourceList) {