forked from mystiq/hydrogen-web
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]() {
|
[Symbol.iterator]() {
|
||||||
return this._mappedValues.entries();
|
return this._mappedValues.entries();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get size() {
|
||||||
|
return this._mappedValues.size;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue