bfg-common 1.5.128 → 1.5.130
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/assets/localization/local_be.json +1 -1
- package/assets/localization/local_hy.json +1 -1
- package/assets/localization/local_kk.json +1 -1
- package/components/common/context/recursion/Recursion.vue +2 -2
- package/components/common/context/recursion/RecursionOld.vue +1 -1
- package/package.json +1 -1
|
@@ -3038,7 +3038,7 @@
|
|
|
3038
3038
|
"selectType": "Выберыце Тып"
|
|
3039
3039
|
},
|
|
3040
3040
|
"vsphereHa": {
|
|
3041
|
-
"sphereHA": "
|
|
3041
|
+
"sphereHA": "Sphere HA",
|
|
3042
3042
|
"setUpSphereNa": "Усталюйце Sphere HA",
|
|
3043
3043
|
"setUpvSphereNaDesc": "Каб забяспечыць максімальную абарону, пастаўце вузлы на асобныя хасты і сходы дадзеных. ",
|
|
3044
3044
|
"spherePackageFile": "Файл пакета сферы",
|
|
@@ -3042,7 +3042,7 @@
|
|
|
3042
3042
|
"selectType": "Ընտրեք տեսակը"
|
|
3043
3043
|
},
|
|
3044
3044
|
"vsphereHa": {
|
|
3045
|
-
"sphereHA": "
|
|
3045
|
+
"sphereHA": "Sphere HA",
|
|
3046
3046
|
"setUpSphereNa": "Ստեղծեք Sphere HA",
|
|
3047
3047
|
"setUpvSphereNaDesc": "Առավելագույն պաշտպանություն ապահովելու համար հանգույցները տեղադրեք առանձին տանտերերի եւ տվյալների շտեմարանների վրա: ",
|
|
3048
3048
|
"spherePackageFile": "Ոլորտի փաթեթի ֆայլ",
|
|
@@ -3041,7 +3041,7 @@
|
|
|
3041
3041
|
"selectType": "Түрді таңдаңыз"
|
|
3042
3042
|
},
|
|
3043
3043
|
"vsphereHa": {
|
|
3044
|
-
"sphereHA": "
|
|
3044
|
+
"sphereHA": "Sphere HA",
|
|
3045
3045
|
"setUpSphereNa": "Сфераны Sphere HA",
|
|
3046
3046
|
"setUpvSphereNaDesc": "Максималды қорғауды қамтамасыз ету үшін түйіндерді бөлек хосттар мен деректер базаларына салыңыз. ",
|
|
3047
3047
|
"spherePackageFile": "Сфера пакетіне арналған файл",
|
|
@@ -40,7 +40,7 @@ const isLoading = computed<boolean>(
|
|
|
40
40
|
)
|
|
41
41
|
|
|
42
42
|
const selectItem = (item: UI_I_ContextMenuItem): void => {
|
|
43
|
-
if (item.disabled) return
|
|
43
|
+
if (item.disabled || item.development) return
|
|
44
44
|
|
|
45
45
|
emits('select-item', item)
|
|
46
46
|
}
|
|
@@ -73,7 +73,7 @@ const toggleItems = (
|
|
|
73
73
|
data: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
|
|
74
74
|
): void => {
|
|
75
75
|
const [item, show, e] = data
|
|
76
|
-
if (!item.items.length || item.disabled) {
|
|
76
|
+
if (!item.items.length || item.disabled || item.development) {
|
|
77
77
|
return
|
|
78
78
|
}
|
|
79
79
|
item.isShowItems = show
|