@webitel/ui-sdk 3.2.69 → 3.2.70

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.69",
3
+ "version": "3.2.70",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -99,7 +99,7 @@ export default {
99
99
  getOptionLabel({ option, optionLabel }) {
100
100
  if (optionLabel && option[optionLabel]) return option[optionLabel];
101
101
  if (option.locale) {
102
- if (Array.isArray(option.locale)) return this.$tc(...option.locale);
102
+ if (Array.isArray(option.locale)) return this.$t(...option.locale);
103
103
  return this.$t(option.locale);
104
104
  }
105
105
  return option[this.defaultOptionLabel] || option;