mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
liniting
This commit is contained in:
parent
26e0657ede
commit
844d7ac69f
1 changed files with 2 additions and 3 deletions
|
@ -12,11 +12,10 @@ const raidRequirements = computed(() => raidCalculations[raidType.value].require
|
||||||
const inputsValid = computed(() => validateSetup());
|
const inputsValid = computed(() => validateSetup());
|
||||||
|
|
||||||
const totalStripes = computed(() => {
|
const totalStripes = computed(() => {
|
||||||
if(inputsValid.value){
|
if (inputsValid.value) {
|
||||||
return `${diskTotal.value / diskPerStripe.value} stripes total`;
|
return `${diskTotal.value / diskPerStripe.value} stripes total`;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue