bfg-common 1.4.400 → 1.4.401

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.
@@ -103,6 +103,7 @@ import type {
103
103
  API_UI_I_VmEditMemory,
104
104
  UI_I_PciDevice,
105
105
  } from '~/lib/models/store/vm/interfaces'
106
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
106
107
  import { navItemsNewViewFunc } from '~/components/common/vm/actions/common/customizeHardware/lib/config/navItems'
107
108
 
108
109
  const vmName = defineModel<string>('vm-name', { required: true })
@@ -176,7 +177,7 @@ const emits = defineEmits<{
176
177
  (event: 'change-boot-order', value: UI_T_ChangeBootOrder): void
177
178
  }>()
178
179
 
179
- // const localization = computed<UI_I_Localization>(() => useLocal())
180
+ const localization = computed<UI_I_Localization>(() => useLocal())
180
181
 
181
182
  const navItemsLocal = computed<UI_I_TabItem[]>(() =>
182
183
  navItemsNewViewFunc(localization.value)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.400",
4
+ "version": "1.4.401",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",