Skip to content

Commit 844d7ac

Browse files
committed
liniting
1 parent 26e0657 commit 844d7ac

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/tools/raid-calculator/raid-calculator.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ const raidRequirements = computed(() => raidCalculations[raidType.value].require
1212
const inputsValid = computed(() => validateSetup());
1313
1414
const totalStripes = computed(() => {
15-
if(inputsValid.value){
15+
if (inputsValid.value) {
1616
return `${diskTotal.value / diskPerStripe.value} stripes total`;
1717
}
18-
else
19-
{
18+
else {
2019
return '';
2120
}
2221
});

0 commit comments

Comments
 (0)