this was missing! and causing an error with empty lists
This commit is contained in:
parent
5d21ae3fb7
commit
b814335b99
1 changed files with 4 additions and 0 deletions
|
@ -79,4 +79,8 @@ export class MappedMap extends BaseObservableMap {
|
|||
[Symbol.iterator]() {
|
||||
return this._mappedValues.entries();
|
||||
}
|
||||
|
||||
get size() {
|
||||
return this._mappedValues.size;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue