Skip to content

Commit

Permalink
24.10.19: small table store fixes [WTEL-3392]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Sep 23, 2024
1 parent 5c9e24e commit bba9bf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.10.15",
"version": "24.10.19",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
4 changes: 3 additions & 1 deletion src/store/new/modules/tableStoreModule/tableStoreModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ const actions = {
context.commit('SET', { path: 'error', value: err });
throw err;
} finally {
context.commit('SET', { path: 'isLoading', value: false });
setTimeout(() => {
context.commit('SET', { path: 'isLoading', value: false });
}, 100); // why 1s? https://ux.stackexchange.com/a/104782
}
},

Expand Down

0 comments on commit bba9bf7

Please sign in to comment.