bfg-common 1.4.42 → 1.4.44
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.
|
@@ -2426,7 +2426,7 @@
|
|
|
2426
2426
|
"ioCountForPathSwitch": "Количество операций ввода-вывода для переключения пути",
|
|
2427
2427
|
"byteCountForPathSwitch": "Количество байт для переключения пути",
|
|
2428
2428
|
"theValueEitherEmptyOrInvalid": "Значение либо пустое, либо недопустимое",
|
|
2429
|
-
"weight": "
|
|
2429
|
+
"weight": "Вес"
|
|
2430
2430
|
},
|
|
2431
2431
|
"auth": {
|
|
2432
2432
|
"welcomeTo": "Добро пожаловать в",
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="recursion-tree">
|
|
3
|
-
<div
|
|
3
|
+
<div
|
|
4
|
+
v-for="node in nodes"
|
|
5
|
+
:key="`${node.type}_${node.id}`"
|
|
6
|
+
:data-id="`${node.testId}-${node.type}-root`"
|
|
7
|
+
>
|
|
4
8
|
<div
|
|
5
9
|
:id="`tree-node-${node.type}-${node.id}`"
|
|
6
10
|
:data-id="node.testId"
|