@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.10.15",
3
+ "version": "24.10.17",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -132,7 +132,9 @@ const actions = {
132
132
  context.commit('SET', { path: 'error', value: err });
133
133
  throw err;
134
134
  } finally {
135
- context.commit('SET', { path: 'isLoading', value: false });
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