bfg-common 1.6.17 → 1.6.18
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_en.json +1 -1
- package/assets/localization/local_ru.json +1 -1
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
- package/lib/models/store/tasks/enums.ts +1 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/package.json +1 -1
- package/store/tasks/mappers/recentTasks.ts +1 -0
|
@@ -3508,7 +3508,7 @@
|
|
|
3508
3508
|
"consolidateSnapshots": "Consolidate Snapshots"
|
|
3509
3509
|
},
|
|
3510
3510
|
"importVms": {
|
|
3511
|
-
"selectSourceTooltipDesc": "
|
|
3511
|
+
"selectSourceTooltipDesc": "VMware user credentials must have Administrator privileges. Credentials for ESXi and vCenter Server are supported",
|
|
3512
3512
|
"selectNetworksSubtitle": "Select adapter types and networks in Procurator for the virtual machine migration.",
|
|
3513
3513
|
"reviewImportVmDetails": "Review the details before importing the VM."
|
|
3514
3514
|
},
|
|
@@ -3507,7 +3507,7 @@
|
|
|
3507
3507
|
"consolidateSnapshots": "Консолидация снимков"
|
|
3508
3508
|
},
|
|
3509
3509
|
"importVms": {
|
|
3510
|
-
"selectSourceTooltipDesc": "
|
|
3510
|
+
"selectSourceTooltipDesc": "Учетные данные пользователя VMware должны обладать правами уровня Administrator. Поддерживаются учетные данные ESXi и vCenter Server",
|
|
3511
3511
|
"selectNetworksSubtitle": "Выберите типы адаптеров и сети в Procurator для миграции виртуальной машины.",
|
|
3512
3512
|
"reviewImportVmDetails": "Проверьте детали перед импортом виртуальной машины."
|
|
3513
3513
|
},
|
|
@@ -191,19 +191,19 @@ export const getBodyDataFunc = (
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
col: 'col2',
|
|
194
|
-
text: $binary.round(datastore.capacity.capacity_mb, false, lang)
|
|
194
|
+
text: $binary.round(datastore.capacity.capacity_mb || 0, false, lang)
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
col: 'col3',
|
|
198
|
-
text: $binary.round(datastore.capacity.provisioned_mb, false, lang)
|
|
198
|
+
text: $binary.round(datastore.capacity.provisioned_mb || 0, false, lang)
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
col: 'col4',
|
|
202
|
-
text: $binary.round(datastore.capacity.free_mb, false, lang)
|
|
202
|
+
text: $binary.round(datastore.capacity.free_mb || 0, false, lang)
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
col: 'col5',
|
|
206
|
-
text: $binary.round(datastore.capacity.used_mb, false, lang)
|
|
206
|
+
text: $binary.round(datastore.capacity.used_mb || 0, false, lang)
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
col: 'col6',
|
|
@@ -83,7 +83,7 @@ export const bodyItems = (
|
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
key: 'col2',
|
|
86
|
-
text: $binary.round(datastore.capacity[tableKeys[2]], false, lang),
|
|
86
|
+
text: $binary.round(datastore.capacity[tableKeys[2]] || 0, false, lang),
|
|
87
87
|
id: datastore.id,
|
|
88
88
|
testId: `backup-datastore-table-item-${datastore.id}`,
|
|
89
89
|
data: {
|
|
@@ -93,7 +93,7 @@ export const bodyItems = (
|
|
|
93
93
|
{
|
|
94
94
|
key: 'col3',
|
|
95
95
|
text: $binary.round(
|
|
96
|
-
datastore.capacity[tableKeys[3]],
|
|
96
|
+
datastore.capacity[tableKeys[3]] || 0,
|
|
97
97
|
false,
|
|
98
98
|
lang
|
|
99
99
|
),
|
|
@@ -105,7 +105,7 @@ export const bodyItems = (
|
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
key: 'col4',
|
|
108
|
-
text: $binary.round(datastore.capacity[tableKeys[4]], false, lang),
|
|
108
|
+
text: $binary.round(datastore.capacity[tableKeys[4]] || 0, false, lang),
|
|
109
109
|
id: datastore.id,
|
|
110
110
|
testId: `backup-datastore-table-item-${datastore.id}`,
|
|
111
111
|
data: {
|
|
@@ -114,7 +114,7 @@ export const bodyItems = (
|
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
key: 'col5',
|
|
117
|
-
text: $binary.round(datastore.capacity[tableKeys[5]], false, lang),
|
|
117
|
+
text: $binary.round(datastore.capacity[tableKeys[5]] || 0, false, lang),
|
|
118
118
|
id: datastore.id,
|
|
119
119
|
testId: `backup-datastore-table-item-${datastore.id}`,
|
|
120
120
|
data: {
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export type UI_T_TasksStateLoading = 'tasks' | 'recentTasks'
|
|
2
2
|
export type UI_T_TaskStatus =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
| 0 // queued
|
|
4
|
+
| 1 // running
|
|
5
|
+
| 2 // completed
|
|
6
|
+
| 3 // failed
|
|
7
|
+
| 4 // canceled
|
|
8
|
+
| 5 // retrying
|
|
9
|
+
| 6 // warning
|
package/package.json
CHANGED