1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-08 23:15:19 +02:00
This commit is contained in:
Rob Weber 2024-07-30 14:48:34 +00:00
parent 26e0657ede
commit 844d7ac69f

View file

@ -12,11 +12,10 @@ const raidRequirements = computed(() => raidCalculations[raidType.value].require
const inputsValid = computed(() => validateSetup());
const totalStripes = computed(() => {
if(inputsValid.value){
if (inputsValid.value) {
return `${diskTotal.value / diskPerStripe.value} stripes total`;
}
else
{
else {
return '';
}
});