bfg-common 1.6.48 → 1.6.49

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.
@@ -315,7 +315,8 @@ const isDisabledMode = computed<boolean>(() => {
315
315
  })
316
316
  const isDisabledCache = computed<boolean>(() => {
317
317
  if (isNewHardDisk.value) return false
318
- return props.isEdit || isRunning.value
318
+ // return props.isEdit || isRunning.value
319
+ return isRunning.value
319
320
  })
320
321
  const isDisabledBus = computed<boolean>(() => {
321
322
  return !isNewHardDisk.value && isRunning.value
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.6.48",
4
+ "version": "1.6.49",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",