isobit-ui 0.1.9 → 0.1.10
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/dist/index.js +4 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.1.
|
|
2
|
+
* isobit-ui v0.1.10
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2412,11 +2412,10 @@ var script$e = {
|
|
|
2412
2412
|
})["catch"](me.error);
|
|
2413
2413
|
} else {
|
|
2414
2414
|
me.data = [];
|
|
2415
|
-
me.loadStore()
|
|
2415
|
+
var result = me.loadStore();
|
|
2416
|
+
if (result.then) result.then(function (result) {
|
|
2416
2417
|
console.log(me.data = result);
|
|
2417
|
-
});
|
|
2418
|
-
//console.log(me.data);
|
|
2419
|
-
|
|
2418
|
+
});
|
|
2420
2419
|
me.$emit('row-select', {
|
|
2421
2420
|
target: me
|
|
2422
2421
|
});
|