bfg-common 1.5.131 → 1.5.133

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.
@@ -66,9 +66,11 @@ const bodyItems = computed<UI_I_BodyItem[][]>(() => {
66
66
  })
67
67
 
68
68
  const selectedHostLocal = ref<number[]>(formSelectedHostsIdLocal.value || [])
69
+ let helper = false
69
70
  watch(selectedHostLocal, (newValue: number[]) => {
70
- if (formSelectedHostsIdLocal.value.length && !newValue.length) {
71
+ if (formSelectedHostsIdLocal.value.length && !newValue.length && !helper) {
71
72
  selectedHostLocal.value = formSelectedHostsIdLocal.value
73
+ helper = true
72
74
  }
73
75
 
74
76
  formSelectedHostsIdLocal.value = newValue
@@ -6,6 +6,7 @@ export type UI_T_NavNodes =
6
6
  | 'v'
7
7
  | 's'
8
8
  | 'n'
9
+ | 'b'
9
10
 
10
11
  export type UI_T_Binary = 'KB' | 'MB' | 'GB' | 'TB' | 'PB' | 'EB' | 'ZB' | 'YB'
11
12
  export type UI_T_BinaryLower =
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.131",
4
+ "version": "1.5.133",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",