@webitel/ui-sdk 3.1.40 → 3.1.42

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.1.40",
3
+ "version": "3.1.42",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -160,7 +160,7 @@ export default {
160
160
  [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
161
161
  [WebitelApplications.AUDIT]: {
162
162
  name: 'Audit',
163
- section: {
163
+ sections: {
164
164
  [AuditorSections.SCORECARDS]: 'Scorecards',
165
165
  },
166
166
  },
@@ -147,7 +147,7 @@ export default {
147
147
  [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
148
148
  [WebitelApplications.AUDIT]: {
149
149
  name: 'Audit',
150
- section: {
150
+ sections: {
151
151
  [AuditorSections.SCORECARDS]: 'Formularios',
152
152
  },
153
153
  },
@@ -159,7 +159,7 @@ export default {
159
159
  [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
160
160
  [WebitelApplications.AUDIT]: {
161
161
  name: 'Audit',
162
- section: {
162
+ sections: {
163
163
  [AuditorSections.SCORECARDS]: 'Анкеты',
164
164
  },
165
165
  },
@@ -159,7 +159,7 @@ export default {
159
159
  [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
160
160
  [WebitelApplications.AUDIT]: {
161
161
  name: 'Audit',
162
- section: {
162
+ sections: {
163
163
  [AuditorSections.SCORECARDS]: 'Анкети',
164
164
  },
165
165
  },
@@ -64,9 +64,8 @@ const deleteMessage = computed(() => {
64
64
  }
65
65
  return t(
66
66
  'webitelUI.deleteConfirmationPopup.askingAlert',
67
- props.deleteCount === 1 ? 1 : 2,
68
- null,
69
67
  { count: props.deleteCount },
68
+ null,
70
69
  );
71
70
  });
72
71