@cloud-app-dev/vidc 2.0.0-alpha.21 → 2.0.0-alpha.22

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.
@@ -60,11 +60,11 @@ function InitialRequest(_ref) {
60
60
  systemFeatures = _yield$fetchInitData.systemFeatures;
61
61
  userInfo = _yield$fetchInitData.userInfo;
62
62
  themeConfig = _yield$fetchInitData.themeConfig;
63
- updateUser(userInfo);
64
- updateOperation(operationInfo);
65
- Config.registerFeatrueIds(userFeatures);
66
- Config.registerPlatformFeature(systemFeatures);
67
- Config.registerThemeConfig(themeConfig);
63
+ userInfo && updateUser(userInfo);
64
+ operationInfo && updateOperation(operationInfo);
65
+ userFeatures && Config.registerFeatrueIds(userFeatures);
66
+ systemFeatures && Config.registerPlatformFeature(systemFeatures);
67
+ themeConfig && Config.registerThemeConfig(themeConfig);
68
68
 
69
69
  _nextTick(function () {
70
70
  return setIsInit(true);
@@ -188,7 +188,7 @@ export function runAsyncIterable(Iterables, runtime, callback) {
188
188
  }
189
189
 
190
190
  x = Iterables_1_1.value;
191
- runtime && runtime(Iterables[x]);
191
+ runtime && runtime(x);
192
192
 
193
193
  case 8:
194
194
  _context3.next = 2;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "@cloud-app-dev/vidc",
4
4
  "description": "Video Image Data Componennts",
5
- "version": "2.0.0-alpha.21",
5
+ "version": "2.0.0-alpha.22",
6
6
  "scripts": {
7
7
  "start": "dumi dev",
8
8
  "docs:build": "dumi build",