@webitel/ui-sdk 24.10.15 → 24.10.17
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/ui-sdk.js +2036 -2036
- package/dist/ui-sdk.umd.cjs +13 -13
- package/package.json +1 -1
- package/src/store/new/modules/tableStoreModule/tableStoreModule.js +3 -1
package/package.json
CHANGED
|
@@ -132,7 +132,9 @@ const actions = {
|
|
|
132
132
|
context.commit('SET', { path: 'error', value: err });
|
|
133
133
|
throw err;
|
|
134
134
|
} finally {
|
|
135
|
-
|
|
135
|
+
setTimeout(() => {
|
|
136
|
+
context.commit('SET', { path: 'isLoading', value: false });
|
|
137
|
+
}, 500); // why 1s? https://ux.stackexchange.com/a/104782
|
|
136
138
|
}
|
|
137
139
|
},
|
|
138
140
|
|