@webitel/ui-sdk 3.2.6 → 3.2.8

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": "3.2.6",
3
+ "version": "3.2.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -112,8 +112,8 @@ export default {
112
112
  [QueueType.PROGRESSIVE_DIALER]: 'Progressive dialer',
113
113
  [QueueType.PREVIEW_DIALER]: 'Preview dialer',
114
114
  [QueueType.CHAT_INBOUND_QUEUE]: 'Chat queue',
115
- [QueueType.INBOUND_JOB_QUEUE]: 'Inbound job queue',
116
- [QueueType.OUTBOUND_JOB_QUEUE]: 'Outbound job queue',
115
+ [QueueType.INBOUND_JOB_QUEUE]: 'Inbound task queue',
116
+ [QueueType.OUTBOUND_JOB_QUEUE]: 'Outbound task queue',
117
117
  },
118
118
  },
119
119
  agent: {
@@ -50,6 +50,13 @@ export default class TableStoreModule extends BaseStoreModule {
50
50
  AFTER_SET_DATA_LIST_HOOK: (context, { items, next }) => ({ items, next }),
51
51
 
52
52
  LOAD_DATA_LIST: async (context, query) => {
53
+ /*
54
+ https://my.webitel.com/browse/WTEL-3560
55
+ preventively disable isNext to handle case when user is clicking
56
+ "next" faster than actual request is made
57
+ */
58
+ context.commit('SET_IS_NEXT', false);
59
+
53
60
  const params = context.getters.GET_LIST_PARAMS(query);
54
61
  try {
55
62
  context.commit('SET_LOADING', true);