bfg-common 1.1.90 → 1.1.91

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.
@@ -329,7 +329,10 @@ const addNetwork = (): void => {
329
329
  networksIndex.value.push(index)
330
330
  networksType.value.push('new')
331
331
 
332
- networks.value.push(useDeepCopy(defaultNetwork))
332
+ networks.value.push({
333
+ ...useDeepCopy(defaultNetwork),
334
+ boot_order: 0 // Убираем галочку
335
+ })
333
336
  }
334
337
  const onRemoveNetwork = (index: number): void => {
335
338
  const removeIndex = networksIndex.value.indexOf(index)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.1.90",
4
+ "version": "1.1.91",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",