Skip to content

Commit

Permalink
Merge pull request #339 from webitel/fix/rename-slas-page
Browse files Browse the repository at this point in the history
fix: rename slas page[WTEL-5379](https://webitel.atlassian.net/browse…
  • Loading branch information
Lera24 authored Oct 30, 2024
2 parents aea381a + e3c0907 commit 3d9bec1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.53",
"version": "24.10.54",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/enums/WebitelApplications/CrmSections.enum.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const CrmSections = Object.freeze({
CONTACTS: 'contacts',

// CONFIGURATION - LOOKUPS
SLA: 'sla',
SLAS: 'slas',
SERVICE_CATALOG: 'service-catalog',
PRIORITIES: 'priorities',
STATUSES: 'statuses',
Expand Down
2 changes: 1 addition & 1 deletion src/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export default {
name: 'CRM',
sections: {
[CrmSections.CONTACTS]: 'Contacts',
[CrmSections.SLA]: 'SLA',
[CrmSections.SLAS]: 'SLAS',
},
},
[WebitelApplications.HISTORY]: { name: 'Call History' },
Expand Down
2 changes: 1 addition & 1 deletion src/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export default {
name: 'CRM',
sections: {
[CrmSections.CONTACTS]: 'Контакты',
[CrmSections.SLA]: 'SLA',
[CrmSections.SLAS]: 'SLAS',
},
},
[WebitelApplications.HISTORY]: { name: 'Call History' },
Expand Down
2 changes: 1 addition & 1 deletion src/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export default {
name: 'CRM',
sections: {
[CrmSections.CONTACTS]: 'Контакти',
[CrmSections.SLA]: 'SLA',
[CrmSections.SLAS]: 'SLAS',
},
},
[WebitelApplications.HISTORY]: { name: 'Call History' },
Expand Down
4 changes: 2 additions & 2 deletions src/modules/Userinfo/classes/ApplicationsAccess.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@ const applicationsAccess = (value = true) => ({
_enabled: value,
_locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.CONTACTS}`,
},
[CrmSections.SLA]: {
[CrmSections.SLAS]: {
_enabled: value,
_locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLA}`,
_locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLAS}`,
},
},
});
Expand Down

0 comments on commit 3d9bec1

Please sign in to comment.