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
|