fix last commit :v
Browse files- index.html +2 -2
index.html
CHANGED
@@ -158,8 +158,8 @@
|
|
158 |
}
|
159 |
|
160 |
// Check if there are remaining layers
|
161 |
-
const quotient = totalLayers / rangeSize;
|
162 |
-
if (Number.isInteger(quotient) || (quotient % 0.5 === 0 && !Number.isInteger(quotient))) {
|
163 |
let start = totalLayers - (totalLayers % rangeSize);
|
164 |
let end = totalLayers;
|
165 |
yamlStr += `- sources:\n`;
|
|
|
158 |
}
|
159 |
|
160 |
// Check if there are remaining layers
|
161 |
+
const quotient = totalLayers / rangeSize;
|
162 |
+
if (Number.isInteger(quotient) || !(quotient % 0.5 === 0 && !Number.isInteger(quotient))) {
|
163 |
let start = totalLayers - (totalLayers % rangeSize);
|
164 |
let end = totalLayers;
|
165 |
yamlStr += `- sources:\n`;
|