esoftplay 0.0.113-d → 0.0.113-e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +0 -2
- package/modules/lib/document.ts +1 -1
- package/modules/lib/image.tsx +2 -2
- package/modules/lib/infinite.tsx +2 -2
- package/modules/lib/roll.tsx +1 -1
- package/modules/use/curl.ts +1 -1
- package/modules/user/class.ts +1 -1
- package/modules/user/login.tsx +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
package/modules/lib/document.ts
CHANGED
package/modules/lib/image.tsx
CHANGED
|
@@ -222,7 +222,7 @@ class m extends LibComponent<LibImageProps, LibImageState> {
|
|
|
222
222
|
}
|
|
223
223
|
},
|
|
224
224
|
(msg: any) => {
|
|
225
|
-
console.log(msg.
|
|
225
|
+
console.log(msg.message, "NOOO")
|
|
226
226
|
if (x.length - 1 == i)
|
|
227
227
|
LibProgress.hide()
|
|
228
228
|
}, 1)
|
|
@@ -261,7 +261,7 @@ class m extends LibComponent<LibImageProps, LibImageState> {
|
|
|
261
261
|
},
|
|
262
262
|
(msg: any) => {
|
|
263
263
|
LibProgress.hide()
|
|
264
|
-
r(msg.
|
|
264
|
+
r(msg.message);
|
|
265
265
|
}, 1)
|
|
266
266
|
}, 1);
|
|
267
267
|
}
|
package/modules/lib/infinite.tsx
CHANGED
|
@@ -134,12 +134,12 @@ export default class m extends LibComponent<LibInfiniteProps, LibInfiniteState>{
|
|
|
134
134
|
},
|
|
135
135
|
(msg) => {
|
|
136
136
|
if (this.props.isDebug) {
|
|
137
|
-
esp.log(msg.
|
|
137
|
+
esp.log(msg.message)
|
|
138
138
|
}
|
|
139
139
|
this.page = page
|
|
140
140
|
this.isStop = true
|
|
141
141
|
this.setState({
|
|
142
|
-
error: msg.
|
|
142
|
+
error: msg.message,
|
|
143
143
|
})
|
|
144
144
|
}, this.props.isDebug
|
|
145
145
|
)
|
package/modules/lib/roll.tsx
CHANGED
package/modules/use/curl.ts
CHANGED
package/modules/user/class.ts
CHANGED
package/modules/user/login.tsx
CHANGED
|
@@ -90,7 +90,7 @@ export default class euserLogin extends LibComponent<UserLoginProps, UserLoginSt
|
|
|
90
90
|
},
|
|
91
91
|
(msg) => {
|
|
92
92
|
// console.log("gagal => " + msg, email)
|
|
93
|
-
this.onFailedLogin(msg.
|
|
93
|
+
this.onFailedLogin(msg.message)
|
|
94
94
|
this.setState({ isLoading: false, email: "" })
|
|
95
95
|
}, 1
|
|
96
96
|
)
|