bfg-common 1.5.524 → 1.5.526

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.
@@ -120,7 +120,7 @@ const enableCpuHotAddDisabled = computed<boolean>(
120
120
  )
121
121
  watch(enableCpuHotAdd, (newValue) => {
122
122
  if (newValue) {
123
- selectedMaxCpu.value = selectedCpu.value
123
+ selectedMaxCpu.value = Math.max(selectedCpu.value, selectedMaxCpu.value)
124
124
  return
125
125
  }
126
126
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.524",
4
+ "version": "1.5.526",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",