include ratio
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Morgan 'ARR\!' Allen 2024-07-08 23:57:25 -07:00
parent a35021b11a
commit e68642582a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
console.log(a.filter(function(el) { console.log(a.filter(function(el) {
if(el[2] > 0.75 && el[2] < 1.25) { if(el[2] > 0.75 && el[2] < 1.25) {
console.log(el); console.log(el);
list.innerHTML += `<ul>${el[3]} cuts for ${el[0]} x ${el[1]}`; list.innerHTML += `<ul>${el[3]} cuts for ${el[0]} x ${el[1]} (ratio: ${el[2]})`;
} }
})); }));
} }