Skip to content

Commit 41586a8

Browse files
authored
fix: getModelDispatchers (#92)
* fix: getModelDispatchers * chore: example @ice/store version
1 parent 09ba3eb commit 41586a8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/counter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"dependencies": {
6-
"@ice/store": "^1.3.0",
6+
"@ice/store": "^1.3.3",
77
"react": "^16.8.6",
88
"react-dom": "^16.8.6"
99
},

examples/todos/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"dependencies": {
6-
"@ice/store": "^1.3.0",
6+
"@ice/store": "^1.3.3",
77
"lodash": "^4.17.15",
88
"react": "^16.8.6",
99
"react-dom": "^16.8.6"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ice/store",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Simple and friendly state for React",
55
"main": "lib/index.js",
66
"files": [

src/plugins/modelApis.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default (): T.Plugin => {
5353
return store.getState()[name];
5454
}
5555
function getModelDispatchers(name: string) {
56-
return store.dispatch()[name];
56+
return store.dispatch[name];
5757
}
5858
function withModel(name: string, mapModelToProps?) {
5959
mapModelToProps = (mapModelToProps || ((model) => ({ [name]: model })));

0 commit comments

Comments
 (0)