Skip to content

Commit 9915901

Browse files
committed
fix(network): fix countMap prop
1 parent 4910237 commit 9915901

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/networks/network.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { get } from 'mobx';
44
export default types
55
.model('Network')
66
.props({
7-
countsMap: types.optional(types.map(types.maybe(types.number)), {}),
7+
countsMap: types.optional(types.map(types.maybeNull(types.number)), {}),
88
})
99
.views(self => ({
1010
count({ type, id }) {

0 commit comments

Comments
 (0)