Skip to content

Commit

Permalink
ObservableGroupMap: use when creating group arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
NaridaL committed Aug 2, 2020
1 parent cc786b3 commit 8889f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ObservableGroupMap.ts
Expand Up @@ -148,7 +148,7 @@ export class ObservableGroupMap<G, T> extends ObservableMap<G, IObservableArray<
private _getGroupArr(key: G) {
let result = super.get(key)
if (undefined === result) {
result = observable([], { name: `GroupArray[${this._keyToName(key)}]` })
result = observable([], { name: `GroupArray[${this._keyToName(key)}]`, deep: false })
super.set(key, result)
}
return result
Expand Down

0 comments on commit 8889f54

Please sign in to comment.